-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
60 lines (56 loc) · 1.86 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
54
55
56
57
58
59
60
#!/usr/bin/env python
#
# texttable - module for creating simple ASCII tables
# Copyright (C) 2003-2015 Gerome Fournier <jef(at)foutaise.org>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
DESCRIPTION = "module for trex API"
import sys
from sys import path
from setuptools import setup
if sys.version < '2.2.3':
from distutils.dist import DistributionMetadata
DistributionMetadata.classifiers = None
DistributionMetadata.download_url = None
setup(
name = "trex-api",
version = "0.0.1",
author = "Ramin Najjarbashi",
author_email = "Y21GdGFXNHVibUZxWVhKaVlYTm9hVUJuYldGcGJDNWpiMjA9",
url = "https://github.com/RaminNietzsche/trex",
license = "GPL-3",
packages = [
"trex",
"trex.client",
"trex.server",
"trex.common",
"trex.console",
"trex.client_utils",
],
description = DESCRIPTION,
install_requires=[
'enum34 >= 1.1.3',
'jsonrpclib-pelix >= 0.2.6',
'texttable >= 0.8.4',
'pyyaml >= 3.11',
'pyzmq >= 14.0.1',
'dpkt >= 1.8.7',
],
platforms = "any",
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
]
)