-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
39 lines (34 loc) · 1 KB
/
setup.cfg
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
[metadata]
name = network-config-analyzer
version = file: nca/VERSION.txt
author = Ziv Nevo
author_email = [email protected]
description = An analyzer for Network Policies and other connectivity-configuration resources
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/np-guard/network-config-analyzer
project_urls =
Bug Tracker = https://github.com/np-guard/network-config-analyzer/issues
NP-Guard Home = https://np-guard.github.io
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
[options]
packages = find_namespace:
include_package_data = True
install_requires =
ghapi==1.0.5
PyYAML==6.0.1
greenery==4.0.0
networkx==3.2.1
beautifulsoup4==4.12.3
lxml==5.2.2
python_requires = >=3.9
[options.packages.find]
include = nca*
[options.package_data]
* = VERSION.txt
[options.entry_points]
console_scripts =
nca = nca.nca_cli:nca_main