forked from KatharaFramework/Kathara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (44 loc) · 1.53 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
from distutils.core import setup
from setuptools import find_packages
setup(
name='kathara',
package_dir={'': 'src'},
packages=find_packages('src'),
py_modules=['kathara'],
version='3.7.6',
license='gpl-3.0',
description='A lightweight container-based network emulation tool.',
author='Kathara Framework',
author_email='[email protected]',
url='https://www.kathara.org',
download_url='https://github.com/KatharaFramework/Kathara/archive/refs/tags/3.7.6.tar.gz',
keywords=['NETWORK-EMULATION', 'CONTAINERS', 'NFV'],
install_requires=[
"binaryornot>=0.4.4",
"docker>=7.0.0",
"kubernetes>=23.3.0",
"requests>=2.22.0",
"slug>=2.0",
"deepdiff==6.2.2",
"pyroute2",
"rich",
"fs>=2.4.16",
"chardet",
"libtmux>=0.8.2; platform_system == 'darwin' or platform_system == 'linux'",
"appscript>=1.1.0; platform_system == 'darwin'",
"pypiwin32>=223; platform_system == 'win32'",
"windows-curses>=2.1.0; platform_system == 'win32'"
],
extras_require={
'test': ["pytest"],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
)