-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
58 lines (50 loc) · 2.21 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
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
from setuptools import setup
#from setuptools import setup, find_packages
setup (
name = "AutoNetkit",
version = "0.6.1",
description = 'Automated configuration generator for cBGP, Netkit and Junosphere',
long_description = 'Automated configuration generator for cBGP, Netkit and Junosphere',
# simple to run
entry_points = {
'console_scripts': [
'autonetkit = AutoNetkit.console_script:main',
'ank_collect_data = AutoNetkit.collect_data:main',
],
},
author = 'Simon Knight, Hung Nguyen',
author_email = "[email protected]",
url = "http://autonetkit.org",
packages = ['AutoNetkit', 'AutoNetkit.algorithms', 'AutoNetkit.compiler',
'AutoNetkit.tests', 'AutoNetkit.examples',
'AutoNetkit.deploy', 'AutoNetkit.internal',
'AutoNetkit.readwrite', 'AutoNetkit.plotting'],
package_data = {'': ['settings.cfg',
'lib/templates/*/*.mako',
'lib/templates/*/*.js',
'lib/shadow', 'lib/configspec.cfg',
'lib/authorized_keys', 'plugins/*', 'plugins/*.py',
'algorithms/*.py', 'plotting/*.py', 'deploy/*.py',
'compiler/*.py', 'internal/*.py',
'examples/*.py',
'test/*,py',
'readwrite/*.py']},
download_url = ("http://pypi.python.org/pypi/AutoNetkit"),
install_requires = ['netaddr', 'mako', 'networkx>=1.6',
'nose', 'pyparsing', 'configobj', 'yapsy', 'textfsm',
'pexpect', 'beaker',],
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Networking",
"Topic :: System :: Software Distribution",
"Topic :: Scientific/Engineering :: Mathematics",
],
)