-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (54 loc) · 2.23 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
51
52
53
54
55
56
57
58
#!/usr/bin/env python3
from setuptools import setup, find_packages
from routerchecker.routerchecker import __version__ as version
def readme():
"""
Read ReST readme file, use as long description.
"""
with open('README.rst') as file:
return file.read()
if __name__ == "__main__":
setup(name='routerchecker',
version=version,
description='Router firmware update scanner',
long_description=readme(),
url='https://github.com/thurask/routerchecker',
keywords='router firmware',
author='Thurask',
author_email='[email protected]',
license='WTFPL v2',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"License :: Freely Distributable",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: BSD :: NetBSD",
"Operating System :: POSIX :: BSD :: OpenBSD",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities"
],
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=[
'requests',
'beautifulsoup4'
],
entry_points={'console_scripts': ['routerchecker=routerchecker.routerchecker:parse_args']})