forked from alexlib/pivpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.24 KB
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
[project]
name = "pivpy"
version = "0.1.1"
authors = [
{ name="Alex Liberzon and Ron Shnapp", email="alex.liberzon@gmail.com" },
]
description = "Python package for post-processing PIV results"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"xarray",
"netcdf4",
"matplotlib",
"pytest",
"vortexfitting",
"h5py",
"nbformat>=5.8.0",
"nbconvert>=7.6.0",
"ipykernel>=6.16.2",
"setuptools>=68.0.0",
"openpiv>=0.25.1",
"jupyterlab>=4.5.1",
]
keywords=["example documentation tutorial"]
[project.optional-dependencies]
lvpyio = ["lvpyio"]
readim = ["readim"]
netcdf = ["netcdf4"]
vortexfitting = ["vortexfitting"]
h5py = ["h5py"]
full = ["lvpyio", "readim", "netcdf4", "vortexfitting", "h5py"]
[project.urls]
"Homepage" = "https://github.com/alexlib/pivpy"
"Bug Tracker" = "https://github.com/alexlib/pivpy/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["pivpy*"]
exclude = ["README_files*", "docs*", "examples*", "tests*"]