-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
38 lines (35 loc) · 1.33 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
from setuptools import setup
setup(name='kollaps',
version='2.0',
description='Decentralized network emulator',
url='https://github.com/miguelammatos/Kollaps.git',
author='Joao Neves, Paulo Gouveia, Luca Liechti',
packages=[
'kollaps',
'kollaps.Kollapslib.deploymentGenerators',
'kollaps.Kollapslib.bootstrapping',
'kollaps.Kollapslib.ThunderStorm',
'kollaps.Kollapslib',
'kollaps.TCAL'
],
install_requires=[
'dnspython',
'docker',
'kubernetes',
'netifaces',
'ply'
],
include_package_data=True,
package_data={
'kollaps.TCAL': ['libTCAL.so'],
'kollaps': ['static/css/*', 'static/js/*', 'templates/*.html'],
},
entry_points={
'console_scripts': ['KollapsDeploymentGenerator=kollaps.deploymentGenerator:main',
'KollapsDashboard=kollaps.Dashboard:main',
'KollapsLogger=kollaps.Logger:main',
'KollapsEmulationManager=kollaps.EmulationManager:main',
'Kollapsbootstrapper=kollaps.bootstrapper:main',
'ThunderstormTranslator=kollaps.ThunderstormTranslator:main'],
},
zip_safe=False)