-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (42 loc) · 1.34 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
from setuptools import find_packages
from setuptools import setup
from pip._internal.req import parse_requirements
with open('README.md', 'r', encoding="utf-8") as readme_file:
readme = readme_file.read()
install_reqs = parse_requirements('requirements.txt', session=False)
requirements = [str(ir.requirement) for ir in install_reqs]
setup(
name='pynipper-ng',
version='0.2.0',
author='Syn-4ck',
author_email='[email protected]',
description='Configuration security analyzer for network devices',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/syn-4ck/pynipper-ng',
packages=find_packages(),
include_package_data=True,
package_data={
'src.report.templates': ['*.html', '*.js', '*.css'],
'src.common': ['*.conf']
},
keywords=[
'analyzer',
'network-analysis',
'network-security',
'configuration-analysis',
'python-tool'
],
install_requires=requirements,
entry_points={
'console_scripts': [
'pynipper-ng = src.main:main',
],
},
classifiers=[
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Environment :: Console',
'Operating System :: OS Independent',
],
)