-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
76 lines (66 loc) · 2.07 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
73
74
75
76
[tool.poetry]
name = "mass-composition"
version = "0.6.8"
description = "For managing multi-dimensional mass-composition datasets, supporting weighted mathematical operations and visualisation."
authors = ["Greg <greg@elphick.com.au>"]
packages = [{ include = "elphick/mass_composition" }]
repository = "https://github.com/elphick/mass-composition"
documentation = "https://elphick.github.io/mass-composition"
readme = "README.md"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.poetry.scripts]
bump-version = "scripts.bump_version:main"
[tool.towncrier]
package = "elphick.mass_composition"
package_dir = "elphick/mass_composition"
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.12"
xarray = ">=2022.6.0"
periodictable = "^1.6.1"
pyyaml = "^6.0"
scipy = "^1.9.0"
matplotlib = "^3.3" # "^3.6.2"
plotly = "^5.3" # "^5.13.0"
seaborn = ">0.11" # "^0.12.2"
pooch = "^1.7.0"
jsonpickle = ">=3.0.1"
kaleido = { version = "0.2.1", optional = true }
statsmodels = { version = ">=0.14.0", optional = true }
networkx = { version = ">2.0,<4.0", optional = true }
joblib = {version = "^1.4.0", optional = true}
tqdm = {version = "^4.66.2", optional = true}
scikit-learn = {version = ">=1.0", optional = true}
[tool.poetry.extras]
viz = ["kaleido", "statsmodels"]
network = ["networkx", "joblib", "tqdm"]
estimation = ["scikit-learn"]
[tool.poetry.group.dev.dependencies]
coverage = "^7.0.5"
notebook = "^6.5.2"
pytest = "^7.2.0"
Sphinx = "^5.0.2"
sphinx-rtd-theme = "^1.0.0"
sphinx-gallery = "^0.11.1"
kaleido = "0.2.1"
sphinx-autodoc-typehints = "^1.18.3"
myst-parser = "^0.18.0"
ydata-profiling = "^4.3.2"
sphinxcontrib-datatemplates = "^0.9.2"
sphinxemoji = "^0.2.0"
towncrier = "^23.11.0"
scikit-learn = "^1.4.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"