-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1001 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1001 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
39
40
41
42
43
[tool.poetry]
name = "elapid"
version = "1.0.3"
description = "Species distribution modeling tools"
authors = ["Christopher Anderson <cbanderson08@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = ["biogeography", "ecology", "maxent", "SDM", "species distribution modeling"]
include = [
{ path = "elapid/data/*", format = "sdist" }
]
[tool.poetry.dependencies]
python = ">=3.9"
numpy = ">=2.0"
pandas = ">=1.0.3,<3.0"
pyproj = ">3.0"
geopandas = ">=1.0"
rasterio = ">=1.2.1"
tqdm = ">=4.60"
rtree = ">=0.9"
scikit-learn = ">=1.2,<1.6"
scipy = ">=1.13"
matplotlib = ">=3.7"
[tool.poetry.group.dev.dependencies]
descartes = ">=1.1"
pytest = ">=8.3"
pytest-xdist = ">=3.6"
pytest-cov = ">=5.0"
pre-commit = ">=3.0"
ipython = ">=8.0"
jupyter = ">=1.0"
mkdocs-material = ">=9.5"
mkdocstrings = {extras = ["python"], version = ">=0.25"}
mkdocs-jupyter = ">=0.24"
[tool.poetry.extras]
glmnet = ["glmnet"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"