coins-demo/setup.py
2019-04-02 00:19:46 -07:00

46 lines
1.7 KiB
Python
Executable file

# Based on setup.py master example at https://github.com/pypa/sampleproject/blob/master/setup.py
from io import open
from os import path
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="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",
"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",
"Topic :: Office/Business :: Groupware",
"Topic :: Office/Business :: Groupware",
"Topic :: Software Development :: Bug Tracking",
"Topic :: Software Development :: Bug Tracking",
],
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",
},
)