-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.cfg
More file actions
46 lines (42 loc) · 1.25 KB
/
setup.cfg
File metadata and controls
46 lines (42 loc) · 1.25 KB
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
[metadata]
name = pyixnetwork
description = Python OO API package to manage Ixia IxNetwork traffic generator
url = https://github.com/shmir/PyIxNetwork
author = Yoram Shamir
author_email = yoram@ignissoft.com
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache Software License
keywords = keysight, ixia, ixnetwork, l2l3, ixload, l4l7, tg, traffic generator, test automation, automation api
classifiers =
Development Status :: 5 - Production/Stable
Natural Language :: English
License :: OSI Approved :: Apache Software License
Intended Audience :: Developers
Operating System :: OS Independent
Topic :: Software Development :: Testing
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
requests
pytrafficgen>=3.1.0,<3.2.0
[options.packages.find]
exclude =
docs*
tests*
[isort]
profile = black
[mypy]
ignore_missing_imports = True
allow_untyped_calls = True
allow_untyped_defs = True
allow_incomplete_defs = True
follow_imports = skip
no_strict_optional = True
show_error_codes = True