X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/e17985e0d4a7ce2eb83c580c71e2f7c1af7f093b..32b8e1c07aaa9b33e7f468701ef9ab461bf3f105:/setup.py diff --git a/setup.py b/setup.py index 5dc5315..92f8e85 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,12 @@ from setuptools import setup, find_packages +version = '0.7.0' + setup( name='tasklib', - version='0.1', + version=version, description='Python Task Warrior library', - long_description=open('README.md').read(), + long_description=open('README.rst').read(), author='Rob Golding', author_email='rob@robgolding.com', license='BSD', @@ -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'], 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', ], )