coins-demo/setup.py

50 lines
1.8 KiB
Python
Raw Normal View History

2019-04-02 07:19:46 +00:00
# Based on setup.py master example at https://github.com/pypa/sampleproject/blob/master/setup.py
2014-05-31 07:36:54 +00:00
2019-04-02 07:19:46 +00:00
from io import open
from os import path
from setuptools import setup, find_packages
2019-04-02 07:19:46 +00:00
import todo
2019-04-02 07:19:46 +00:00
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()
2010-09-27 08:12:13 +00:00
setup(
2018-12-21 08:38:44 +00:00
name="django-todo",
version=todo.__version__,
2019-04-02 07:19:46 +00:00
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/
2010-09-27 08:12:13 +00:00
classifiers=[
2018-12-21 08:38:44 +00:00
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
2019-04-02 07:19:46 +00:00
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Environment :: Web Environment",
"Framework :: Django",
2018-12-21 08:38:44 +00:00
"Operating System :: OS Independent",
"Topic :: Office/Business :: Groupware",
2019-04-02 07:19:46 +00:00
"Topic :: Office/Business :: Groupware",
"Topic :: Software Development :: Bug Tracking",
2018-12-21 08:38:44 +00:00
"Topic :: Software Development :: Bug Tracking",
2010-09-27 08:12:13 +00:00
],
2019-04-02 07:19:46 +00:00
keywords="lists todo bug bugs tracking",
packages=find_packages(), # Finds modules with an __init__.py
include_package_data=True, # Pulls in non-module data from MANIFEST.in
2019-04-02 07:19:46 +00:00
python_requires=">=3.5",
2018-12-21 08:38:44 +00:00
install_requires=["unidecode"],
2019-04-02 07:19:46 +00:00
project_urls={
"Demo Site": "http://django-todo.org",
"Bug Reports": "https://github.com/shacker/django-todo/issues",
"Source": "https://github.com/shacker/django-todo",
},
2010-09-27 08:12:13 +00:00
)