forked from GispoCoding/eis_toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·72 lines (65 loc) · 1.77 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
[tool.poetry]
name = "eis_toolkit"
version = "1.1.1"
description = "EIS Toolkit is a comprehensive collection of tools suitable for mineral prospectivity mapping. This toolkit has been developed as part of the Exploration Information System project which has been funded by European Union."
authors = []
maintainers = ["Gispo Ltd. <[email protected]>"]
license = "EUPL-1.2"
readme = "README.md"
homepage = "https://eis-he.eu"
repository = "https://github.com/GispoCoding/eis_toolkit"
# See https://pypi.org/classifiers/
keywords = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: GIS",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.scripts]
eis = "eis_toolkit.cli:app"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
gdal = ">=3.4.3,<4.0.0"
rasterio = "^1.3.0"
pandas = "^2.0.0"
geopandas = "^0.11.1"
scikit-learn = "^1.1.2"
matplotlib = "^3.5.3"
statsmodels = "^0.14.0"
keras = "^2.9.0"
tensorflow = "^2.9.1"
beartype = "^0.13.1"
seaborn = ">=0.13.0,<1.0.0"
pykrige = "^1.7.0"
rtree = "^1.0.1"
typer = {extras = ["all"], version = "^0.9.0"}
imbalanced-learn = "^0.11.0"
pysal = "^23.7"
esda = "^2.5.1"
scipy = "1.11.4"
numba = "^0.60.0"
[tool.poetry.dev-dependencies]
jupyterlab = "^3.4.5"
pytest = "^7.1.2"
invoke = "^1.7.1"
flake8 = "^5.0.4"
flake8-docstrings = "^1.6.0"
black = "^22.3.0"
mypy = "^0.942"
isort = "^5.10.1"
mkdocs= "^1.5.0"
mkdocs-material = "^9.4.7"
mkdocstrings = "^0.23.0"
mkdocstrings-python = "^1.7.0"
mkdocs-with-pdf = "^0.9.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
issues = "https://github.com/GispoCoding/eis_toolkit/issues"
[tool.isort]
multi_line_output = 3
line_length = 120
include_trailing_comma = true
[tool.black]
line-length = 120
exclude = ['D100']