-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
74 lines (66 loc) · 1.8 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
68
69
70
71
72
73
74
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=45",
"wheel",
"oldest-supported-numpy"
]
[project]
name = "hsp2"
dynamic = ["version", "readme"]
description = "Hydrological Simulation Program - Python"
dependencies = [
"cltoolbox",
"numba",
"numpy<2.0",
"pandas",
"tables"
]
authors = [
{name = "RESPEC, Inc", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = [
"hydrology",
"hydrological",
"hydraulic",
"hspf",
"simulation",
"python",
]
license = {file = "LICENSE"}
requires-python = ">=3.9"
[project.optional-dependencies]
slim = ["numba", "pandas"]
test = ["pytest", "pytest-cov"]
dev = ["hsp2[test]"]
[project.scripts]
hsp2 = "hsp2.hsp2tools.HSP2_CLI:main"
[project.urls]
documentation = "http://www.respec.com/product/hydrologic-simulation-program-python-hsp%C2%B2/"
github = "https://github.com/respec/HSPsquared"
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = true
[tool.setuptools.dynamic]
readme = {file = "README.rst"}
version = {file = "VERSION"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"hsp2.hsp2tools.data" = ["*"]