forked from schuetzgroup/sdt-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 862 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 862 Bytes
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
# SPDX-FileCopyrightText: 2020 Lukas Schrangl <lukas.schrangl@tuwien.ac.at>
#
# SPDX-License-Identifier: BSD-3-Clause
from setuptools import setup, find_packages
setup(
python_requires=">=3.7",
install_requires=["numpy>=1.10",
"pandas",
"tables",
"scipy>0.18",
"tifffile>=0.14.0",
"pyyaml",
"imageio<2.22.2",
"matplotlib", ],
packages=find_packages(include=["sdt*"]),
package_data={"": ["*.ui"],
"sdt.gui": ["SdtGui/*",
"breeze-icons/COPYING-ICONS",
"breeze-icons/icons/AUTHORS",
"breeze-icons/icons/index.theme",
"breeze-icons/icons/*/22/*.svg"]},
)