-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·56 lines (54 loc) · 1.5 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
52
53
54
55
56
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="VISSSlib",
use_scm_version={
"version_scheme": "post-release",
},
author="Maximilian Maahn",
description="VISSS processing library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/maahn/VISSSlib",
project_urls={
"Bug Tracker": "https://github.com/maahn/VISSSlib/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
install_requires=[
"numpy",
"scipy",
"xarray",
"dask[complete]",
"pandas",
"pyyaml",
"trimesh",
"flatten_dict",
"matplotlib",
"ipywidgets",
"bottleneck",
"pillow",
"image-packer",
"addict",
"pyOptimalEstimation",
"filterpy",
"flox",
"portalocker",
"numba",
"vg",
"xarray_extras",
"manifold3d",
"task-queue",
"psutil",
],
setup_requires=["setuptools_scm"],
)
# "opencv-python" -> conda version is not recongnized
# https://stackoverflow.com/questions/57821903/setup-py-with-dependecies-installed-by-conda-not-pip