-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
30 lines (28 loc) · 875 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
from setuptools import setup, find_packages
setup(
name="fogbed",
version="1.14.3",
description='Containernet fork that add Fogbed support.',
long_description='Containernet fork that add Fogbed support.',
keywords=['networking', 'emulator', 'protocol', 'Internet', 'OpenFlow', 'SDN', 'fog'],
url='https://github.com/EsauM10/fogbed',
author='Esaú Mascarenhas',
author_email='esaumasc@gmail.com',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python 3.8',
'Topic :: System :: Emulators'
'Operating System :: Ubunbu OS'
],
install_requires = [
'clusternet >= 0.9.2'
],
entry_points={
'console_scripts': [
'fogbed = fogbed.scripts:main',
]
},
packages=find_packages(),
include_package_data=True,
zip_safe=False
)