-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
81 lines (74 loc) · 2.48 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="meile-gui",
version="0.13.3.0",
description="Meile dVPN powered by the Sentinel Network",
long_description=readme,
long_description_content_type="text/markdown",
author="MathNodes",
author_email="[email protected]",
url="https://meile.app",
license="GNU General Public License (GPL)",
keywords="vpn, dvpn, sentinel, crypto, gui, privacy, security, decentralized ",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Environment :: X11 Applications",
"Environment :: MacOS X",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.10",
"Topic :: System :: Networking",
"Topic :: Internet",
],
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=[
"kivymd",
"pydash",
"treelib",
"kivyoav",
"pexpect",
"qrcode",
"save_thread_result",
"screeninfo",
"mapview",
"psutil",
"unidecode",
"dnspython",
"bip_utils",
"toml",
# "cosmpy", # Replaced by sentinel-python-sdk + mospy
# "sentinel_protobuf==0.3.1",
# The conflict is caused by:
# meile-gui 0.13.3.0 depends on sentinel_protobuf==0.3.1
# sentinel-sdk 0.0.1 depends on sentinel-protobuf==0.3.3
"keyrings.cryptfile",
"mnemonic",
"bech32",
"pywgkey",
"sentinel-sdk",
"bcrypt",
"jwcrypto"
],
package_data={
"conf": ["config/config.ini", "config/dnscrypt-proxy.toml"],
"bin": ["sentinelcli", "warp-cli", "warp-svc", "tun2socks", "v2ray"],
"awoc": ["data/world.json"],
"fonts": ["Roboto-BoldItalic.ttf", "arial-unicode-ms.ttf", "mplus-2c-bold.ttf"],
"imgs": ["*.png", "tenor.gif", "flags/*.png"],
"kv": ["meile.kv"],
"main": ["icon.png"],
"utils": ["coinimg/dvpn.png", "fonts/Roboto-BoldItalic.ttf"],
},
entry_points={
"console_scripts": ["meile-gui = main.meile_gui:main"],
},
)