Update setup.py, bump to 2.3.2

This commit is contained in:
Scot Hacker 2019-04-02 00:19:46 -07:00
parent 388fb40c00
commit 8b448e88a5
2 changed files with 33 additions and 16 deletions

View file

@ -312,6 +312,8 @@ django-todo no longer references a jQuery datepicker, but defaults to native htm
## Version History ## Version History
**2.3.2** Update setup.py metadata
**2.3.1** Improve error handling for badly formatted or non-existent CSV uploads. **2.3.1** Improve error handling for badly formatted or non-existent CSV uploads.
**2.3.0** Implement mail tracking system. Added ability to batch-import tasks via CSV. Fixed task re-ordering if task deleted behind the scenes. **2.3.0** Implement mail tracking system. Added ability to batch-import tasks via CSV. Fixed task re-ordering if task deleted behind the scenes.

View file

@ -1,31 +1,46 @@
#!/usr/bin/env python # Based on setup.py master example at https://github.com/pypa/sampleproject/blob/master/setup.py
from setuptools import setup, find_packages from io import open
from os import path
import todo as package from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup( setup(
name="django-todo", name="django-todo",
version=package.__version__, version="2.3.2",
description=package.__doc__.strip(), description="A multi-user, multi-group task management and assignment system for Django.",
author=package.__author__, long_description=long_description,
author_email=package.__email__, long_description_content_type="text/markdown",
url=package.__url__, url="https://github.com/shacker/django-todo",
license=package.__license__, author="Scot Hacker",
packages=find_packages(), # For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[ classifiers=[
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: BSD License", "License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Environment :: Web Environment",
"Framework :: Django",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Topic :: Office/Business :: Groupware",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Groupware", "Topic :: Office/Business :: Groupware",
"Topic :: Software Development :: Bug Tracking", "Topic :: Software Development :: Bug Tracking",
"Topic :: Software Development :: Bug Tracking",
], ],
include_package_data=True, keywords="lists todo bug bugs tracking",
zip_safe=False, packages=find_packages(exclude=["contrib", "docs", "tests"]),
python_requires=">=3.5",
install_requires=["unidecode"], install_requires=["unidecode"],
project_urls={
"Demo Site": "http://django-todo.org",
"Bug Reports": "https://github.com/shacker/django-todo/issues",
"Source": "https://github.com/shacker/django-todo",
},
) )