forked from Rafficer/linux-cli-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (48 loc) · 1.43 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
"""setup.py: setuptools control."""
import re
from setuptools import setup
version = re.search(
r'(VERSION = "(\d.\d.\d)")',
open("protonvpn_cli/constants.py").read(),
re.M
).group(2)
long_descr = """
The official Linux CLI for ProtonVPN.
For further information and a usage guide, please view the project page:
https://github.com/ProtonVPN/linux-cli
"""
setup(
name="protonvpn_cli",
packages=["protonvpn_cli"],
entry_points={
"console_scripts": ["protonvpn = protonvpn_cli.cli:main"]
},
version=version,
description="Linux command-line client for ProtonVPN",
long_description=long_descr,
author="Proton Technologies AG",
author_email="[email protected]",
license="GPLv3",
url="https://github.com/protonvpn/linux-cli",
package_data={
"protonvpn_cli": ["templates/*"]
},
install_requires=[
"requests",
"docopt",
"pythondialog",
"jinja2",
],
python_requires=">=3.5",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)