-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
35 lines (33 loc) · 1.18 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
import os
from setuptools import setup, find_packages
DESCRIPTION = """\
Centinel is a tool used to detect network interference, \
online information controls, and Internet censorship."""
setup(
name="centinel",
version="0.1.5.7",
author="ICLab Developers",
author_email="[email protected]",
description=DESCRIPTION,
license="MIT",
keywords="censorship information controls network interference",
url="https://www.github.com/iclab/centinel",
packages=["centinel", "centinel.primitives",
"centinel.vpn"],
install_requires=["argparse >= 1.2.1",
"dnspython >= 1.11.0",
"requests >= 2.9.1",
"trparse >= 0.2.1",
"pycurl >= 7.19.5",
"urllib3 >= 1.9.1",
"dnspython >= 1.12.0",
"BeautifulSoup >= 3.2.1",
"httplib2 >= 0.9.2",
"bs4 >= 0.0.1",
"geopy >= 1.11.0"],
include_package_data=True,
entry_points={
'console_scripts': ['centinel=centinel.cli:run',
'centinel-vpn=centinel.vpn.cli:run']
},
)