forked from awsassets/linux-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.27 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
#!/usr/bin/env python
from setuptools import find_packages, setup
from protonvpn_cli.constants import APP_VERSION
long_description = """
Official ProtonVPN CLI for Linux based systems.
"""
setup(
name="protonvpn-cli",
version=APP_VERSION,
packages=find_packages(),
entry_points={
"console_scripts": [
"protonvpn-cli = protonvpn_cli.main:main"
]
},
description="Official ProtonVPN CLI for Linux",
author="Proton Technologies AG",
author_email="contact@protonvpn.com",
long_description=long_description,
install_requires=[
"protonvpn-nm-lib>=3.4.0", "pythondialog"
],
include_package_data=True,
license="GPLv3",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Security",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)