-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
107 lines (100 loc) · 2.43 KB
/
setup.cfg
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[metadata]
name = h5rdmtoolbox
version = 1.6.1
author = Matthias Probst
author_email = matth.probst@gmail.com
description = Supporting a FAIR Research Data lifecycle using Python and HDF5.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://h5rdmtoolbox.readthedocs.io/en/latest/
classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 4 - Beta
Topic :: Scientific/Engineering
[options]
packages = find:
python_requires = >=3.8, <3.13
include_package_data = True
install_requires =
appdirs >= 1.4.4
importlib_resources
numpy >= 1.20, < 2.0.0 # 2.0.0 fails with pint
h5py > 3.7.0
matplotlib >= 3.5.2
IPython >= 7.34.0 # colab wants 7.34.0
pyyaml > 6.0 # 5.4 does not work with python 3.11!
xarray >= 2022.3.0
pint==0.21.1 # pint >= 0.19.2<0.22.0 Note: 0.22.0 shows bad str-output for quantities with format Lx~
pint_xarray >= 0.2.1
regex>=2020.7.9
packaging>=24.1
ontolutils>=0.12.4
python-forge==18.6.0
requests>=2.32.3
pydantic>=2.8.2
rdflib>=7.0.0
[options.extras_require]
database=
pymongo>=4.2.0,<=4.10.1
layout_validation=
tabulate>=0.8.10,<=0.9.0
csv =
pandas >= 1.4.3
snt =
xmltodict<=0.13.0
tabulate>=0.8.10,<=0.9.0
python-gitlab
pypandoc >= 1.11
gui =
PyQt5==5.15.10
test =
pytest>=8.3.3
pytest-cov>=5.0.0
pylint
ssnolib>=1.3.0.1a11
mongomock==4.1.2
xmltodict<=0.13.0
scipy>=1.10.1 # provides netcdf4
%(csv)s
%(snt)s
%(database)s
docs =
%(csv)s
%(snt)s
%(database)s
%(test)s
Sphinx==4.5.0
sphinx_book_theme==0.3.3
sphinx-copybutton==0.5.2
sphinx-design==0.4.1
myst-nb==0.17.2
sphinxcontrib-bibtex==2.6.3
scikit-image>=0.21.0
scikit-learn
complete =
%(layout_validation)s
%(gui)s
%(test)s
%(docs)s
[options.package_data]
h5rdmtoolbox =
data/*.yaml
data/*.yml
data/*.png
data/TbxLayout.hdf
data/EmptyLayout.hdf
data/style.css
tests/data/*
conventions/html/template.html
[tool:pytest]
python_files = test_*.py
testpaths = tests
[options.entry_points]
console_scripts =
h5tbx = h5rdmtoolbox.cli:main