forked from open-traffic-generator/snappi-ixnetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (44 loc) · 1.45 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
"""
To build distribution: python setup.py sdist bdist_wheel --universal
"""
import os
import setuptools
pkg_name = "snappi_ixnetwork"
version = "0.9.1"
# read long description from readme.md
base_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base_dir, "readme.md")) as fd:
long_description = fd.read()
setuptools.setup(
name=pkg_name,
version=version,
description="The Snappi IxNetwork Open Traffic Generator Python Package",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/open-traffic-generator/snappi-ixnetwork",
author="ajbalogh",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing :: Traffic Generation",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
keywords="snappi ixnetwork testing open traffic generator automation",
include_package_data=True,
packages=setuptools.find_packages(),
python_requires=">=2.7, <4",
install_requires=["ixnetwork-restpy>=1.0.52"],
extras_require={
"testing": [
"snappi==0.9.1",
"snappi_convergence==0.4.1",
"pytest",
"mock",
"dpkt==1.9.4",
]
},
)