-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (28 loc) · 851 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (28 loc) · 851 Bytes
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
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='ntf',
version='0.1',
description='NTF is a Python based network test framework.',
long_description=readme,
author='Shridevi Gurram',
author_email='shridevi.gurram@barefootnetworks.com',
url='https://github.com/barefootnetworks/ntf',
packages=[
'ntf', 'ntf.docker',
],
package_dir={'': 'src'},
scripts=['ntf'],
zip_safe=False,
license='Apache License',
keywords='ntf',
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',
]
)