|
| 1 | +from setuptools import setup, find_packages |
| 2 | + |
| 3 | + |
| 4 | +setup( |
| 5 | + name='python-redmine', |
| 6 | + version='0.1.0', |
| 7 | + packages=find_packages(), |
| 8 | + url='https://github.com/maxtepkeev/python-redmine', |
| 9 | + license=open('LICENSE').read(), |
| 10 | + author='Max Tepkeev', |
| 11 | + author_email='tepkeev@gmail.com', |
| 12 | + description='Library for communicating with a Redmine project management application', |
| 13 | + long_description=open('README.rst').read(), |
| 14 | + keywords='redmine', |
| 15 | + install_requires=['requests >= 2.1.0'], |
| 16 | + zip_safe=False, |
| 17 | + classifiers=[ |
| 18 | + 'Development Status :: 4 - Beta', |
| 19 | + 'License :: OSI Approved :: Apache Software License', |
| 20 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 21 | + 'Topic :: Utilities', |
| 22 | + 'Topic :: Internet :: WWW/HTTP', |
| 23 | + 'Intended Audience :: Developers', |
| 24 | + 'Environment :: Console', |
| 25 | + 'Environment :: Web Environment', |
| 26 | + 'Operating System :: OS Independent', |
| 27 | + 'Programming Language :: Python :: 2.7', |
| 28 | + 'Programming Language :: Python :: 3.2', |
| 29 | + 'Programming Language :: Python :: 3.3', |
| 30 | + ], |
| 31 | +) |
0 commit comments