forked from znailnetem/znail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (38 loc) · 1.34 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
from znail import __version__
setup(
name='znail',
version=__version__,
description='Network Emulator',
maintainer='Andreas Nilsson',
maintainer_email='[email protected]',
url='https://github.com/znailnetem/znail',
license='Apache License 2.0',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: System :: Networking',
'Topic :: System :: Emulators',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.5',
],
keywords='znail',
packages=find_packages(exclude=['*.test', '*.test.*', 'test.*', 'systest', 'systest.*', 'example', 'example.*']),
entry_points={
'console_scripts': [
'znail = znail.ui.__main__:main',
],
},
package_data={
'znail.netem': ['data/*'],
'znail.ui.web': ['templates/*', 'static/*'],
},
)