forked from shmir/PyTrafficGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (45 loc) · 1.67 KB
/
Copy pathsetup.py
File metadata and controls
53 lines (45 loc) · 1.67 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
47
48
49
50
51
52
53
#!/usr/bin/env python
# encoding: utf-8
"""
Package PyTrafficGenerator for distribution.
"""
from setuptools import find_packages, setup
def main():
with open("requirements.txt") as f:
install_requires = f.read().splitlines()
with open("README.md") as f:
long_description = f.read()
setup(
name="pytrafficgen",
description="Base Python OO API package to automate traffic generators (Spirent, Ixia, Xena etc.)",
url="https://github.com/shmir/PyTrafficGenerator/",
use_scm_version={"root": ".", "relative_to": __file__, "local_scheme": "node-and-timestamp"},
license="Apache Software License",
author="Yoram Shamir",
author_email="yoram@ignissoft.com",
platforms="any",
install_requires=install_requires,
packages=find_packages(
exclude=(
"tests",
"tests.*",
)
),
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
keywords="ixia spirent xena trex byteblower l2l3 l47 test automation",
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",
],
)
if __name__ == "__main__":
main()