X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/583112a8ed772fd0affdcb3ad12413862b8faeea..87cd94826c2d97e4561219d15bd0c7d9e19e3d4a:/setup.py diff --git a/setup.py b/setup.py index 2d12729..a275915 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,10 @@ from setuptools import setup, find_packages +version = '0.10.0' + setup( name='tasklib', - version='0.1', + version=version, description='Python Task Warrior library', long_description=open('README.rst').read(), author='Rob Golding', @@ -12,11 +14,19 @@ setup( download_url='https://github.com/robgolding63/tasklib/downloads', packages=find_packages(), include_package_data=True, + test_suite='tasklib.tests', + install_requires=['six==1.5.2', 'pytz', 'tzlocal'], classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', + 'Programming Language :: Python', + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.2", + "Programming Language :: Python :: 3.3", 'License :: OSI Approved :: BSD License', 'Topic :: Software Development :: Libraries :: Python Modules', - 'Programming Language :: Python', 'Intended Audience :: Developers', ], )