Skip to content

Commit

Permalink
Update setup.py, bump to 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shacker committed Apr 2, 2019
1 parent 388fb40 commit 8b448e8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 16 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,8 @@ django-todo no longer references a jQuery datepicker, but defaults to native htm

## 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.0** Implement mail tracking system. Added ability to batch-import tasks via CSV. Fixed task re-ordering if task deleted behind the scenes.
Expand Down
47 changes: 31 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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(
name="django-todo",
version=package.__version__,
description=package.__doc__.strip(),
author=package.__author__,
author_email=package.__email__,
url=package.__url__,
license=package.__license__,
packages=find_packages(),
version="2.3.2",
description="A multi-user, multi-group task management and assignment system for Django.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/shacker/django-todo",
author="Scot Hacker",
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Environment :: Web Environment",
"Framework :: Django",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Groupware",
"Topic :: Office/Business :: Groupware",
"Topic :: Software Development :: Bug Tracking",
"Topic :: Software Development :: Bug Tracking",
],
include_package_data=True,
zip_safe=False,
keywords="lists todo bug bugs tracking",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
python_requires=">=3.5",
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",
},
)

0 comments on commit 8b448e8

Please sign in to comment.