-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (41 loc) · 954 Bytes
/
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
from setuptools import setup
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
setup(
name="nanorc",
package_data={
'nanorc': [
'confdata/*.json',
## yes, I really hate this too
'webuidata/*',
'webuidata/*/*',
'webuidata/*/*/*',
'webuidata/*/*/*/*',
'webuidata/*/*/*/*/*',
'webuidata/*/*/*/*/*/*',
'webuidata/*/*/*/*/*/*/*',
'webuidata/*/*/*/*/*/*/*/*',
]
},
install_requires=[
"click",
"click-shell",
"Flask",
"requests",
"Flask-HTTPAuth",
"Flask-RESTful",
"Flask-Cors",
"rich",
"sh",
"graphviz",
"kubernetes",
"docker",
"PySocks",
"anytree",
"transitions",
"deepdiff",
],
extras_require={"develop": [
"ipdb",
"ipython"
]},
)