-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.84 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
[tool.poetry]
name = "geometallurgy"
packages = [{ include = "elphick/geomet" }]
version = "0.4.11"
description = "Tools for the geometallurgist"
authors = ["Greg <11791585+elphick@users.noreply.github.com>"]
repository = "https://github.com/elphick/geometallurgy"
documentation = "https://elphick.github.io/geometallurgy"
readme = "README.md"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.poetry.scripts]
bump-version = "scripts.bump_version:main"
[tool.towncrier]
package = "elphick.geomet"
package_dir = "elphick/geomet"
filename = "CHANGELOG.rst"
directory = "towncrier/newsfragments"
[tool.towncrier.fragment.feature]
[tool.towncrier.fragment.bugfix]
[tool.towncrier.fragment.doc]
[tool.towncrier.fragment.removal]
[tool.towncrier.fragment.misc]
[tool.towncrier.fragment.maint]
name = "Other Tasks"
showcontent = true
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
plotly = "^5.22.0"
pandas = ">=1.0"
periodictable = "^1.7.0"
#geoh5py = ">=0.8.0,<10.0.0"
pyarrow = ">=16.1.0,<18.0.0"
folium = { version = "^0.16.0", optional = true }
pandera = { version = ">=0.19.3,<0.21.0", extras = ['io'], optional = true }
#omfpandas = { version = ">=0.2.1", optional = true } # last omfv1 version
omfvista = { version = ">=0.3.0", optional = true }
[tool.poetry.extras]
map = ["folium"]
validation = ["pandera"]
blockmodel = ["omfvista"] #, "omfpandas"]
all = ["map", "validation", "blockmodel"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
sphinx = "^7.3.7"
sphinx-gallery = "^0.16.0"
kaleido = "0.2.1"
sphinx-rtd-theme = "^2.0.0"
ydata-profiling = "^4.6.0" # later than 4.6.0 moves to pydantic 2.0
coverage = "^7.5.3"
towncrier = "^23.11.0"
myst-parser = "^3.0.1"
sphinx-autodoc-typehints = "^2.1.1"
pytest-xdist = "^3.6.1"
pytest-cov = "^5.0.0"
toml = "^0.10.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"