coins-demo/setup.py

32 lines
928 B
Python
Raw Normal View History

2014-05-31 07:36:54 +00:00
#!/usr/bin/env python
2010-09-27 08:12:13 +00:00
from setuptools import setup, find_packages
import todo as package
2010-09-27 08:12:13 +00:00
setup(
2018-12-21 08:38:44 +00:00
name="django-todo",
version=package.__version__,
description=package.__doc__.strip(),
author=package.__author__,
author_email=package.__email__,
url=package.__url__,
license=package.__license__,
2010-09-27 08:12:13 +00:00
packages=find_packages(),
classifiers=[
2018-12-21 08:38:44 +00:00
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Groupware",
"Topic :: Software Development :: Bug Tracking",
2010-09-27 08:12:13 +00:00
],
include_package_data=True,
zip_safe=False,
2018-12-21 08:38:44 +00:00
install_requires=["unidecode"],
2010-09-27 08:12:13 +00:00
)