X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/blobdiff_plain/583112a8ed772fd0affdcb3ad12413862b8faeea..3a33ae4c90af752f7cce2312bf08871101d7574b:/setup.py diff --git a/setup.py b/setup.py index 2d12729..a9b8b11 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,10 @@ from setuptools import setup, find_packages +version = '0.7.0-dev' + 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'], 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', ], )