|
1 | 1 | from setuptools import setup, find_packages |
2 | 2 |
|
3 | 3 | setup( |
4 | | - author='Miquel Torres', |
5 | | - author_email='tobami@gmail.com', |
6 | 4 | name='codespeed', |
7 | 5 | version='0.9.1', |
| 6 | + author='Miquel Torres', |
| 7 | + author_email='tobami@gmail.com', |
8 | 8 | url='https://github.com/tobami/codespeed', |
| 9 | + download_url="https://github.com/tobami/codespeed/tags", |
9 | 10 | license='GNU Lesser General Public License version 2.1', |
| 11 | + keywords=["benchmarking", "visualization"], |
10 | 12 | install_requires=['django>=1.4', 'isodate', 'south<=2.0'], |
11 | 13 | packages=find_packages(exclude=['ez_setup', 'sample_project']), |
12 | 14 | description='A web application to monitor and analyze the performance of your code', |
13 | 15 | include_package_data=True, |
14 | 16 | zip_safe=False, |
| 17 | + classifiers =[ |
| 18 | + 'Environment :: Web Environment', |
| 19 | + 'Framework :: Django', |
| 20 | + 'Intended Audience :: Developers', |
| 21 | + 'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)', |
| 22 | + 'Operating System :: OS Independent', |
| 23 | + 'Programming Language :: Python', |
| 24 | + 'Programming Language :: Python :: 2.6', |
| 25 | + 'Programming Language :: Python :: 2.7', |
| 26 | + 'Topic :: Internet :: WWW/HTTP', |
| 27 | + ] |
15 | 28 | ) |
0 commit comments