-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
67 lines (52 loc) · 1.47 KB
/
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
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "versioneer[toml]", "cibuildwheel[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "glm-py"
dynamic = ["version"]
description = "Python tools for running General Lake Model (GLM) simulations"
readme = "README.md"
authors = []
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["GLM", "Lake", "Model"]
requires-python = ">=3.9"
dependencies = [
"pandas>=2.0.0",
"fastapi[all]>=0.88.0",
"numpy>=1.26",
"python-multipart",
"regex>=2023.12.25",
"netcdf4>=1.7.1.post2",
"matplotlib>=3.9.0"
]
[project.optional-dependencies]
toml = ["tomli; python_version < '3.11'"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"glmpy.data" = ["sparkling_sim/*.json", "sparkling_sim/*.csv"]
[project.urls]
Repository = "https://github.com/AquaticEcoDynamics/glm-py"
[project.scripts]
[tool.setuptools.packages.find]
include = ["glmpy", "glmpy.*"]
namespaces = false
[tool.pytest.ini_options]
pythonpath = ["."]
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "glmpy/_version.py"
versionfile_build = "glmpy/_version.py"
tag_prefix = "v"
parentdir_prefix = "glmpy-"
[tool.cibuildwheel]
skip = "*musllinux*"