forked from cicwi/flexDATA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 778 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
from setuptools import setup, find_packages
setup(
name="flexdata",
package_dir={'flexdata': 'flexdata'},
packages=find_packages(),
install_requires=[
"numpy",
"pyqtgraph",
"astra-toolbox",
"matplotlib",
"tqdm",
"imageio",
"tifffile",
"psutil",
"toml",
"transforms3d",
"paramiko"],
extras_require={
'dev': [
'autopep8',
'rope',
'jedi',
'flake8',
'importmagic',
'autopep8',
'black',
'yapf',
'snakeviz',
# Documentation
'sphinx',
'sphinx_rtd_theme',
'recommonmark'
]
},
version='1.0.0',
)