-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (25 loc) · 871 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
__version__ = '0.0.1'
__author__ = 'David Stainton'
__contact__ = '[email protected]'
__url__ = ''
__license__ = 'GPL3'
__copyright__ = '2017'
setup(name='orscanner', # TODO: pick a better name
version=__version__,
description='Tor Bandwidth Scanner',
long_description=__doc__,
keywords=['python', 'twisted', 'txtorcon', 'tor', 'metrics'],
install_requires=open('requirements.txt').readlines(),
# TODO: complete the classifiers
#classifiers = ['Framework :: Twisted', 'Programming Language :: Python']
classifiers=[],
author=__author__,
author_email=__contact__,
url=__url__,
license=__license__,
packages=find_packages(),
# data_files = [('path', ['filename'])]
data_files=[],
scripts=['bin/detect_partitions.py'],
)