forked from jotyGill/openpyn-nordvpn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (47 loc) · 2 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
from setuptools import setup, find_packages
from openpyn import __version__
import sys
if sys.version_info < (3, 5):
sys.stderr.write("ERROR: openpyn requires Python 3.5 or above." +
"Install using 'pip3' instead of just 'pip' \n")
sys.exit(1)
with open('README.md', encoding='utf-8') as readme_file:
full_description = readme_file.read()
readme_file.close()
setup(
name='openpyn',
version=__version__,
description='Easily connect to and switch between, OpenVPN servers hosted by NordVPN.',
license='GNU General Public License v3 or later (GPLv3+)',
author='JGill',
zip_safe=False,
author_email='[email protected]',
url='https://github.com/jotyGill/openpyn-nordvpn/',
keywords=[
'openvpn wrapper', 'nordvpn', 'nordvpn client', 'secure vpn',
'vpn wrapper', 'private vpn', 'privacy'],
install_requires=['requests', 'colorama'],
platforms=['GNU/Linux', 'Ubuntu', 'Debian', 'Kali', 'CentOS', 'Arch', 'Fedora'],
packages=find_packages(),
entry_points={
'console_scripts': [
'openpyn = openpyn.openpyn:main',
'openpyn-management = openpyn.management.management:show']},
data_files=[('/usr/share/openpyn', ['./openpyn/scripts/manual-dns-patch.sh',
'./openpyn/scripts/update-resolv-conf.sh', './openpyn/config.json'])],
include_package_data=True,
exclude_package_data={'openpyn': ['creds', 'credentials', 'install.sh', '.gitignore']},
long_description=full_description,
classifiers=[
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'Topic :: Utilities',
'Topic :: Security',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)