forked from russdill/juniper-vpn-py
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·40 lines (37 loc) · 1.17 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
#! /usr/bin/env python3
from setuptools import setup
setup(
name='juniper-vpn',
version=1,
packages=['junipervpn'],
url='https://github.com/chrisdiamand/juniper-vpn-py',
project_urls={
"Bug Tracker": 'https://github.com/chrisdiamand/juniper-vpn-py/issues',
"Source Code": 'https://github.com/chrisdiamand/juniper-vpn-py',
},
license='COPYING',
description='An openconnect wrapper to connect to Juniper VPNs',
long_description="",
python_requires='>= 3.4',
install_requires=[
'netifaces',
'pyasn1',
'pyasn1-modules',
'mechanize',
],
classifiers=[
"Programming Language :: Python :: 3 :: Only",
# https://pypi.org/classifiers/
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2.1)"
"Operating System :: POSIX :: Linux",
"Topic :: System :: Networking",
"Intended Audience :: End Users/Desktop",
],
entry_points={
'console_scripts': [
'juniper-vpn.py = junipervpn.vpn:main',
'tncc.py = junipervpn.tncc:main',
],
},
)
# vim :set tabstop=4 shiftwidth=4 textwidth=80 expandtab