Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Commit 85e97a8

Browse files
authored
Merge pull request #72 from juga0/feature/classifiers
Add classifiers, license, url
2 parents 839fc5a + 76d08be commit 85e97a8

1 file changed

Lines changed: 17 additions & 7 deletions

File tree

setup.py

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,30 @@
33
__version__ = '0.0.1'
44
__author__ = 'aagbsn'
55
__contact__ = 'aagbsn@torproject.org'
6-
__url__ = '' # TODO: publish this
7-
__license__ = ''
6+
__url__ = 'https://github.com/TheTorProject/bwscanner' # TODO: publish this
7+
__license__ = 'GPL'
88
__copyright__ = ''
99

10-
setup(name='bwscanner', # TODO: pick a better name
10+
setup(name='bwscanner', # TODO: pick a better name
1111
version=__version__,
1212
description='Tor Bandwidth Scanner',
1313
long_description=__doc__,
1414
keywords=['python', 'twisted', 'txtorcon', 'tor', 'metrics'],
1515
install_requires=open('requirements.txt').readlines(),
16-
17-
# TODO: complete the classifiers
18-
#classifiers = ['Framework :: Twisted', 'Programming Language :: Python']
19-
classifiers=[],
16+
classifiers=[
17+
'Framework :: Twisted',
18+
'Development Status :: 3 - Alpha',
19+
'Environment :: Console',
20+
'Intended Audience :: Developers',
21+
'License :: OSI Approved :: GPL License',
22+
'Natural Language :: English',
23+
'Operating System :: OS Independent',
24+
'Programming Language :: Python :: 2.7',
25+
'Topic :: System :: Networking',
26+
'Topic :: Internet :: Proxy Servers',
27+
'Topic :: Internet',
28+
'Topic :: Security',
29+
'Topic :: Utilities'],
2030
author=__author__,
2131
author_email=__contact__,
2232
url=__url__,

0 commit comments

Comments
 (0)