-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (35 loc) · 1.19 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
"""
To build distribution: python setup.py sdist bdist_wheel --universal
"""
import os
import setuptools
pkg_name = "snappi_test"
version = "0.0.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="Snappi Tests for Open Traffic Generator",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/open-traffic-generator/snappi-tests",
author="Open Traffic Generator",
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 testing open traffic generator automation",
include_package_data=True,
packages=[pkg_name],
python_requires=">=2.7, <4",
install_requires=[],
)