-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·46 lines (40 loc) · 1.33 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
#!/usr/bin/env python
from setuptools import setup
import platform
packages = [
'nitt_sw_login'
]
install_req = ["requests", "PyOpenSSL", "pyasn1", "urllib3"]
if platform.system() in ['Linux', 'Darwin']:
install_req.append("ndg-httpsclient")
long_description = \
'''
A command line utility that logs you in the NITT Dell SonicWall, and
maintains a stable internet connection, without any time limit. (Only
for NIT-Trichy students)
'''
setup(name='nitt-sw-login',
version='1.0.1',
author='Shubham Dighe',
author_email='digsblogger@gmail.com',
license='BSD 3-clause "New" or "Revised" License',
description='NITT Sonicwall Login Manager',
long_description=long_description,
url='https://github.com/digaru19/NITT-SonicWall-Login',
keywords='nitt_sw_login nitt nit-trichy nitt-sw-login',
classifiers=[
'Environment :: Console',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Session'
],
packages=packages,
install_requires=install_req,
entry_points={
'console_scripts' : [
'nitt-sw-login=nitt_sw_login.__main__:main'
]
}
)