forked from sk2/autonetkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (48 loc) · 2.05 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
59
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
setup (
name = "autonetkit",
version = "0.8.32",
description = 'Automatic configuration generation for emulated networks',
long_description = 'Automatic configuration generation for emulated networks',
entry_points = {
'console_scripts': [
'autonetkit = autonetkit.console_script:console_entry',
'ank_webserver = autonetkit.webserver:main',
'ank_collect_server = autonetkit.collection.server:main',
],
},
author = 'Simon Knight',
author_email = "[email protected]",
url = "http://www.autonetkit.org",
#packages = ['autonetkit', 'autonetkit.deploy', 'autonetkit.load', 'autonetkit.plugins'],
packages=find_packages(exclude=('tests', 'docs')),
include_package_data = True, # include data from MANIFEST.in
#package_data = {'': ['settings.cfg', 'config/configspec.cfg', ]},
download_url = ("http://pypi.python.org/pypi/autonetkit"),
install_requires = [
'netaddr==0.7.10',
'mako==0.8',
'networkx>=1.7',
'configobj==4.7.1',
'tornado==3.0.1',
#'textfsm', 'pika',
# 'exscript==0.0.1'
],
#Note: exscript disabled in default install: requires pycrypto which requires compilation (can cause installation issues)
#dependency_links = [ 'https://github.com/knipknap/exscript/tarball/master#egg=exscript-0.0.1',],
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",
],
)