from setuptools import setup, find_packages setup( name='tasklib', version='0.1', description='Python Task Warrior library', long_description=open('README.md').read(), author='Rob Golding', author_email='rob@robgolding.com', license='BSD', url='https://github.com/robgolding63/tasklib', download_url='https://github.com/robgolding63/tasklib/downloads', packages=find_packages(), include_package_data=True, classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: BSD License', 'Topic :: Software Development :: Libraries :: Python Modules', 'Programming Language :: Python', 'Intended Audience :: Developers', ], )