-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
42 lines (35 loc) · 958 Bytes
/
pyproject.toml
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
[project]
name = "pivpy"
version = "0.0.20"
authors = [
{ name="Alex Liberzon and Ron Shnapp", email="[email protected]" },
]
description = "Python package for post-processing PIV results"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"xarray",
"matplotlib",
"pytest",
"vortexfitting"
]
keywords=["example documentation tutorial"]
[project.optional-dependencies]
lvpyio = ["lvpyio"]
readim = ["readim"]
netcdf = ["netcdf4"]
vortexfitting = ["vortexfitting"]
full = ["lvpyio", "readim", "netcdf4", "vortexfitting"]
[project.urls]
"Homepage" = "https://github.com/alexlib/pivpy"
"Bug Tracker" = "https://github.com/alexlib/pivpy/issues"
[tool.setuptools]
include-package-data = true