Skip to content

Commit 626d9e1

Browse files
committed
Add setup.py classifiers, keywords and download_url
1 parent a17a59c commit 626d9e1

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

setup.py

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,28 @@
11
from setuptools import setup, find_packages
22

33
setup(
4-
author='Miquel Torres',
5-
author_email='tobami@gmail.com',
64
name='codespeed',
75
version='0.9.1',
6+
author='Miquel Torres',
7+
author_email='tobami@gmail.com',
88
url='https://github.com/tobami/codespeed',
9+
download_url="https://github.com/tobami/codespeed/tags",
910
license='GNU Lesser General Public License version 2.1',
11+
keywords=["benchmarking", "visualization"],
1012
install_requires=['django>=1.4', 'isodate', 'south<=2.0'],
1113
packages=find_packages(exclude=['ez_setup', 'sample_project']),
1214
description='A web application to monitor and analyze the performance of your code',
1315
include_package_data=True,
1416
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+
]
1528
)

0 commit comments

Comments
 (0)