-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 992 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (34 loc) · 992 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
37
38
[build-system]
requires = ["setuptools>=68.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyswatplus"
version = "0.2.0"
description = "SWAT+ watershed model calibration, sensitivity analysis & validation toolkit"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "Sebastian R.O. Marshall", email = "xec3cr@virginia.edu"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Hydrology",
]
dependencies = [
"numpy>=1.24",
"pyyaml>=6.0",
"tqdm>=4.65",
]
[project.optional-dependencies]
ui = ["streamlit>=1.28"]
dev = ["pytest>=7.0", "pytest-cov", "ruff"]
all = ["streamlit>=1.28", "matplotlib>=3.7", "plotly>=5.0"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py39"