-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.3 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
[tool.ruff]
line-length = 120
target-version = "py39"
exclude = ["parsetab.py"]
[tool.poetry]
name = "mpilot"
version = "1.2.8"
description = "MPilot is a plugin-based, environmental modeling framework"
authors = ["Conservation Biology Institute"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/consbio/mpilot"
homepage = "https://consbio.github.io/mpilot/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
packages = [
{ include = "mpilot"}
]
[tool.poetry.dependencies]
python = ">=3.9"
ply = "^3.11"
six = "*"
click = "^8.0.4"
numpy = "^1.26.4"
netCDF4 = [
{ version = "^1.7.2", python = ">=3.9", optional = true }
]
cftime = [
{ version = "^1.6.4", optional = true }
]
[tool.poetry.extras]
netcdf = ["netCDF4", "cftime"]
[tool.poetry.scripts]
mpilot = 'mpilot.cli.mpilot:main'
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
ruff = "^0.7.3"
sphinx = "^7.4.7"
sphinx-material = "^0.0.36"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"