-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 880 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 880 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='RTPGenerator',
version='0.0.1',
description='RTP UDP flow generation',
author='Genevieve Bartlett',
license='The GNU General Public License',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: System :: Distributed Computing',
'Programming Language :: Python :: 2.7'
],
keywords='testbed video RTP traffic generation',
packages=find_packages(exclude=[]),
entry_points={
'console_scripts': [
'RTPgenClient = RTPGenerator.RTPClient:main ',
'RTPgenServer = RTPGenerator.RTPServer:main '
]
}
)