Skip to content
Snippets Groups Projects
Commit 66b4e64b authored by Alexander Kreft's avatar Alexander Kreft
Browse files

REL: Make h5py optional

parent 27d4959c
No related branches found
No related tags found
1 merge request!11REL: Make h5py optional
Pipeline #10641 failed
......@@ -12,6 +12,11 @@ Dependencies will be installed automatically if you use the below described proc
- `caosdb>=0.4.0`
- `openpyxl>=3.0.0`
- `xlrd>=1.2.0`
- `pandas>=1.2.0`
- `numpy>=1.17.3`
If you want to use the optional h5-crawler the following dependencies will be installed additionally:
- `h5py>=3.3.0`
For testing:
- `tox`
......@@ -21,6 +26,9 @@ For testing:
- `pip install . --user`
- `pip install tox --user`
Optional h5-crawler:
- `pip install .[h5-crawler] --user`
## Run Unit Tests
`tox`
......
......@@ -159,8 +159,9 @@ def setup_package():
"pandas>=1.2.0",
"numpy>=1.17.3",
"xlrd>=2.0",
"h5py",
],
extras_require={"h5-crawler": ["h5py>=3.3.0", ],
},
packages=find_packages('src'),
package_dir={'': 'src'},
setup_requires=["pytest-runner>=2.0,<3dev"],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment