forked from EcohydrologyTeam/ClearWater-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 905 Bytes
/
pyproject.toml
File metadata and controls
36 lines (29 loc) · 905 Bytes
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
[build-system]
requires = ["setuptools>=61", "wheel>=0.31.0", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[project]
name = "clearwater_modules"
dynamic = ["version", "readme"]
description = "Clearwater Python module."
authors = [
{name = "Todd Steissberg", email = "Todd.E.Steissberg@erdc.dren.mil"},
]
requires-python = ">=3.11"
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
dependencies = [
'numba',
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["clearwater_modules*"]
[tool.setuptools.dynamic]
version = {attr = "clearwater_modules.__version__"}
readme = {file = "README.md"}