-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
43 lines (39 loc) · 1.3 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
40
41
42
43
[metadata]
name = navv
version = attr: navv._version.__version__
author = Seth Grover
author_email = [email protected]
description = Generate a spreadsheet for network traffic analysis from PCAP data and Zeek logs
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/cisagov/network-architecture-verification-and-validation
project_urls =
Bug Tracker = https://github.com/cisagov/network-architecture-verification-and-validation/issues
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: System :: Networking :: Monitoring
Topic :: Utilities
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
install_requires =
click>=8.1.6
flask>=2.3.2
lxml>=4.3.2
netaddr>=0.8.0
openpyxl>=3.1.2
pandas>=2.0.3
tqdm>=4.57.0
[options.packages.find]
where = src
[options.package_data]
navv = data/*.pkl, data/*.json, gui/templates/*.html, gui/static/*.js, gui/static/*.css, gui/static/css/*.css, gui/static/css/*.css.map, gui/static/img/*.png, gui/static/js/*.js, gui/static/js/*.js.map
[options.entry_points]
console_scripts =
navv = navv.__main__:main