-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
40 lines (37 loc) · 1 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
from setuptools import setup
from setuptools import find_packages
install_requires = [
'six==1.11.0',
'pyyaml==4.2b1',
'ipaddress==1.0.19',
'tinydb==3.7.0',
'beautifultable==0.3.0',
'logger==1.4',
'flask==1.1.0',
'jsonschema==2.6.0',
'smallcli==0.1',
]
test_requires = []
setup(
name='KNet',
version='1.0.18b',
description="Virtual Network Topology Builder",
author="KNet Solutions",
author_email="[email protected]",
url="https://github.com/knetsolutions/KNet",
packages=find_packages(exclude=['test']),
include_package_data=True,
install_requires=install_requires,
license="Apache",
keywords='sdn',
python_requires='>=2.6, <3',
entry_points={
'console_scripts': ['knet-cli=KNet.app:knetcli'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: User Interfaces',
'Programming Language :: Python :: 2.7'
]
)