-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 909 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md', 'r') as file:
description = file.read()
setup(
name='clusternet',
version='0.9.2',
description='Distributed Software Defined Network Emulation',
long_description=description,
long_description_content_type='text/markdown',
keywords=['networking', 'emulator', 'containernet', 'mininet', 'OpenFlow', 'SDN', 'fog'],
url='https://github.com/EsauM10/clusternet',
author='Esaú Mascarenhas',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers'
],
packages=find_packages(),
install_requires = [
'Flask',
'Flask-Cors',
'httpx',
'pyyaml'
],
entry_points={
'console_scripts': [
'RunWorker = clusternet.server.worker_app:main',
]
},
include_package_data=True,
zip_safe=False
)