-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 824 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 824 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='network-testing',
version='0.0.1',
description='Network application test framework and tests.',
author='Pavel Šimerda',
author_email='pavlix@pavlix.net',
url='https://github.com/pavlix/network-testing',
packages=['network_testing'],
entry_points={
'console_scripts': [
'test-client-server = network_testing.client_server:main',
'test-client-server-genhtml = network_testing.client_server_genhtml:main'
]
},
package_data={
'network_testing': [
'data/hosts',
'data/testcases/*/*/*',
'data/report/templates/*',
'data/report/static_data/*',
'data/report/example_data/*'
]
},
)