-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
42 lines (38 loc) · 980 Bytes
/
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
[tool.poetry]
name = "elapid"
version = "1.0.2"
description = "Species distribution modeling tools"
authors = ["Christopher Anderson <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["biogeography", "ecology", "maxent", "SDM", "species distribution modeling"]
include = [
{ path = "elapid/data/*", format = "sdist" }
]
[tool.poetry.dependencies]
python = ">=3.8"
numpy = ">=1.18,<2.0"
pandas = ">=1.0.3"
pyproj = ">3.0"
geopandas = ">=0.7"
rasterio = ">=1.2.1"
tqdm = ">=4.60"
rtree = ">=0.9"
scikit-learn = ">=1.2"
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"