-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
74 lines (71 loc) · 1.85 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
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="vpnspeed",
version="1.0.0",
description="Speed comparision tool between multiple VPN Providers",
long_description=long_description,
long_description_content_type="text/markdown",
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
],
package_dir={
"": "src/cli",
"vpnspeed": "src/daemon/vpnspeed",
},
py_modules=["vpnspeed_cli"],
packages=find_packages("src/daemon/"),
python_requires=">=3.8, <4",
install_requires=[
"yarl==1.4.2",
"pillow==10.2.0",
"asyncio",
"aiodocker",
"aiorwlock",
"aiohttp",
"aiofiles",
"dataclasses",
"jsonpickle",
"jsonpath-ng",
"pexpect",
"PyYAML==6.0",
"pythonping",
"jinja2",
"pygeohash",
"pycountry",
"aiosqlite",
"python-crontab",
"pandas",
"matplotlib",
"dnspython3",
"pycryptodome",
],
# extras_require={
# 'dev': ['check-manifest'],
# 'test': ['coverage'],
# },
package_data={
"vpnspeed": [
"resources/*",
"resources/*/*",
"resources/*/*/*",
"resources/*/*/*/*",
]
},
entry_points={
"console_scripts": [
"vpnspeed=vpnspeed_cli:run",
"vpnspeedd=vpnspeed.daemon:run",
],
},
)