-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
51 lines (42 loc) · 1.42 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="autonetkit",
version="0.12.3",
description='Automatic configuration generation',
long_description='Automatic configuration generation',
entry_points={
'console_scripts': [
'autonetkit = autonetkit.console:main',
'autonetkit_webserver = autonetkit.webserver.webserver:main',
],
},
author='Simon Knight',
author_email="[email protected]",
url="http://www.autonetkit.org",
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True, # include data from MANIFEST.in
download_url=("http://pypi.python.org/pypi/autonetkit"),
install_requires=[
'netaddr',
'networkx',
'Jinja2',
'aiohttp',
'aiohttp_jinja2',
'requests',
'pydantic'
],
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"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",
],
)