-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·47 lines (37 loc) · 1.41 KB
/
setup.py
File metadata and controls
executable file
·47 lines (37 loc) · 1.41 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
from setuptools import setup, find_packages
def main():
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
with open('README.rst') as f:
long_description = f.read()
setup(
name='pyixload',
description='Python OO API package to automate Ixia IxLoad traffic generator',
url='https://github.com/shmir/PyIxLoad/',
use_scm_version={
'root': '.',
'relative_to': __file__,
'local_scheme': 'node-and-timestamp'
},
license='Apache Software License',
author='Yoram Shamir',
author_email='yoram@ignissoft.com',
long_description=long_description,
platforms='any',
install_requires=install_requires,
packages=find_packages(exclude=['tests']),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Topic :: Software Development :: Testing :: Traffic Generation',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='ixload l4l7 test tool ixia automation',
)
if __name__ == '__main__':
main()