forked from p4lang/ptf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (31 loc) · 884 Bytes
/
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
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='ptf',
version='0.9.1',
description='PTF is a Python based dataplane test framework.',
long_description=readme,
author='Antonin Bas',
author_email='[email protected]',
url='https://github.com/p4lang/ptf',
packages=[
'ptf', 'ptf.platforms',
],
package_dir={'': 'src'},
scripts=[
'ptf',
'ptf_nn/ptf_nn_agent.py'
],
zip_safe=False,
license='Apache License',
keywords='ptf',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
]
)