forked from ProtonVPN/proton-vpn-gtk-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (56 loc) · 1.65 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
#!/usr/bin/env python
from setuptools import setup, find_namespace_packages
import version
setup(
name="proton-vpn-gtk-app",
version=version.read_from_versions(),
description="Proton VPN GTK app",
author="Proton AG",
author_email="[email protected]",
url="https://github.com/ProtonVPN/proton-vpn-gtk-app",
install_requires=[
"proton-vpn-api-core",
"proton-vpn-logger",
"pygobject",
"pycairo",
"dbus-python",
"packaging"
],
extras_require={
"development": [
"proton-core-internal",
"proton-keyring-linux-secretservice",
"proton-vpn-network-manager-openvpn",
"proton-vpn-killswitch-network-manager",
"behave",
"pyotp",
"pytest",
"pytest-cov",
"pygobject-stubs",
"flake8",
"pylint",
"mypy",
"PyYAML"
]
},
packages=find_namespace_packages(include=["proton.vpn.app.*"]),
include_package_data=True,
data_files=[('.', ['version.py', 'versions.yml'])],
python_requires=">=3.8",
license="GPLv3",
platforms="OS Independent",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Security",
],
entry_points={
"console_scripts": [
['protonvpn-app=proton.vpn.app.gtk.__main__:main'],
],
}
)