This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
70 lines (65 loc) · 2.21 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
"""setup.py: setuptools control."""
import re
import os
from setuptools import setup
from linux_gui.constants import VERSION
try:
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_descr = '\n' + f.read()
except FileNotFoundError:
long_descr = """
The Linux GUI for ProtonVPN.
For further information and a usage guide, please view the project page:
https://github.com/ProtonVPN/linux-gui
"""
setup(
name="protonvpn-gui",
packages=[
"linux_gui",
"linux_gui.presenters",
"linux_gui.services",
"linux_gui.views",
"linux_gui.resources",
"linux_gui.resources.img.flags",
"linux_gui.resources.img.flags.small",
"linux_gui.resources.img.flags.large",
"linux_gui.resources.img.logo",
"linux_gui.resources.img.utils",
"linux_gui.resources.styles",
"linux_gui.resources.ui",
],
entry_points={
"console_scripts": [
"protonvpn-gui = linux_gui.protonvpn_gui:init",
"protonvpn-tray = linux_gui.indicator:ProtonVPNIndicator",
]
},
include_package_data=True,
version=VERSION,
description="Linux GUI client for ProtonVPN",
long_description=long_descr,
long_description_content_type="text/markdown",
author="Proton Technologies AG",
author_email="[email protected]",
license="GPLv3",
url="https://github.com/ProtonVPN/linux-gui",
install_requires=[
"protonvpn-cli>=2.2.2",
"requests>=2.23.0",
],
python_requires=">=3.5",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)