-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (69 loc) · 2.03 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (69 loc) · 2.03 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "open-flash"
dynamic = ["version"]
authors = [
{name = "SEA Lab"}
]
description = "A Python package for semi-analytical hydrodynamics modeling including matched eigenfunction expansion method"
readme = "README.md"
license-files = ["LICENSE*","CITATION.cff"]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"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",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy>=1.21,<2.0", # Caps NumPy to the 1.x line
"scipy>=1.7,<1.14", # Safe cap before major breaking internal rewrites
"pandas>=1.5",
"matplotlib>=3.5",
"h5netcdf>=0.12",
"h5py>=3.0",
"xarray>=2023.0",
"streamlit>=1.0"
]
keywords = ["matched eigenfunctions", "hydrodynamics", "semi-analytical"]
urls = { Homepage = "https://github.com/symbiotic-engineering/semi-analytical-hydro.git" }
[project.optional-dependencies]
dev = [
"pytest>=7.0,<8.0",
"pytest-cov",
"sphinx>=3.0",
"sphinx-rtd-theme>=0.5",
"sphinx-tabs>=1.0",
"sphinx_design>=0.0.8",
"sphinx-copybutton",
"sphinx-last-updated-by-git",
"nbsphinx>=0.8",
"jupyter>=1.0.0",
"ipykernel",
"twine>=4.0",
"build>=0.8",
"readme_renderer>=30.0",
"watchdog>=3.0",
"black>=23.0",
"ruff>=0.0.280"
]
hydro = [
"capytaine>=2.2",
]
[tool.setuptools]
package-dir = {"" = "package/src"}
[tool.setuptools.packages.find]
where = ["package/src"]
include = ["openflash*"]
[tool.setuptools.package-data]
"openflash" = [] # Explicitly state no package data
[tool.setuptools_scm]
local_scheme = "no-local-version"
fallback_version = "0+unknown"