-
Notifications
You must be signed in to change notification settings - Fork 266
/
setup.py
40 lines (37 loc) · 1.23 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
"""
ACIToolkit Installer using setuptools
"""
import os, sys
from setuptools import setup
base_dir = os.path.dirname(__file__)
about = {}
with open(os.path.join(base_dir, "acitoolkit", "__about__.py")) as f:
exec(f.read(), about)
setup(
name=about["__title__"],
version=about["__version__"],
packages=["acitoolkit"],
author=about["__author__"],
author_email=about["__email__"],
url=about["__uri__"],
license=about["__license__"],
install_requires=["requests",
"websocket-client>0.33.0",
"gitpython",
"flask-httpauth",
"flask-sqlalchemy",
"flask-admin",
"flask-bootstrap",
"flask-wtf",
"flask-cors",
"flask",
"pymysql",
"tabulate",
"py-radix",
"jsonschema",
"graphviz",
"ipaddress",
"{}".format("deepdiff==3.3.0" if sys.version_info[0] == 2 else "deepdiff")],
tests_requires=["mock"],
description="This library allows basic Cisco ACI APIC configuration.",
)