-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
62 lines (56 loc) · 1.28 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
[metadata]
name = synpivimage
version = 1.0.0a7
author = Matthias Probst
author_email = matth.probst@gmail.com
description = Tool to build synthetic Particle Image Velocimetry (PIV) images
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/MatthiasProbst/synpivimage
classifiers =
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"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",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha"
[options]
packages = find:
python_requires = >=3.8,<3.13
include_package_data = True
install_requires =
numpy
pandas
pathlib
pyyaml
tqdm
matplotlib
python-dotenv
opencv-python
scipy
pydantic
ontolutils>=0.12.2
ssnolib>=1.3.0.1a12
pivmetalib>=0.1.0rc9
pivimage
[options.extras_require]
test =
h5py
pytest
pytest-cov
pylint
gui =
PyQt5
xarray
complete =
%(gui)s
%(test)s
[tool:pytest]
python_files = test_*.py
[coverage:run]
source = synpivimage/*
relative_files = false
omit = */gui/*