-
Notifications
You must be signed in to change notification settings - Fork 87
/
setup.py
executable file
·50 lines (43 loc) · 1.41 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
#!/usr/bin/env python3
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
########################################
version_py = os.path.join('vpn_slice', 'version.py')
d = {}
with open(version_py, 'r') as fh:
exec(fh.read(), d)
version_pep = d['__version__']
########################################
setup(
name="vpn-slice",
version=version_pep,
description=("vpnc-script replacement for easy split-tunnel VPN setup"),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="Daniel Lenski",
author_email="[email protected]",
extras_require={
"setproctitle": ["setproctitle"],
"dnspython": ["dnspython"],
},
python_requires=">=3.6",
license='GPL v3 or later',
url="https://github.com/dlenski/vpn-slice",
packages=["vpn_slice"],
include_package_data=True,
entry_points={'console_scripts': ['vpn-slice=vpn_slice.__main__:main']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: BSD',
'Operating System :: MacOS :: MacOS X',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
]
)