This repository has been archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
executable file
·85 lines (75 loc) · 2.44 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env python3
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
import os
# To generate the version at build time based on
# git describe --tags --dirty --always
import versioneer
here = os.path.abspath(os.path.dirname(__file__))
def long_description():
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
return f.read()
def get_package_data():
# Example that grabs all *.ini files in the cwd and all files in foo/bar
# other_files = ['*.ini']
# for r, _, fs in os.walk(os.path.join(here, 'foo', 'bar')):
# for f in fs:
# other_files.append(os.path.join(r, f))
# return other_files
return [
'config.default.ini',
'config.log.default.ini',
]
def get_data_files():
pass
setup(
name='sbws',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Simple Bandwidth Scanner',
long_description=long_description(),
long_description_content_type="text/markdown",
author='Matt Traudt, juga',
author_email='{pastly, juga}@torproject.org',
license='CC0',
url="https://gitweb.torproject.org/sbws.git",
classifiers=[
'Development Status :: 4 - Beta',
"Environment :: Console",
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: System :: Networking',
],
packages=find_packages(),
include_package_data=True,
package_data={
'sbws': get_package_data(),
},
data_files=get_data_files(),
keywords='tor onion bandwidth measurements scanner relay circuit',
python_requires='>=3.5',
entry_points={
'console_scripts': [
'sbws = sbws.sbws:main',
]
},
install_requires=[
'stem>=1.7.0',
'requests[socks]',
],
extras_require={
# vulture: find unused code
'dev': ['flake8', 'vulture'],
'test': ['tox', 'pytest', 'coverage', 'freezegun'],
# recommonmark: to make sphinx render markdown
'doc': ['sphinx', 'recommonmark', 'pylint'],
},
)