-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (45 loc) · 1.83 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
[tool.poetry]
name = "GrainLearning"
version = "2.0.3"
description = "A Bayesian uncertainty quantification toolbox for discrete and continuum numerical models of granular materials"
authors = [
"Hongyang Cheng <[email protected]>",
"Luisa Orozco <[email protected]>",
"Retief Lubbe <[email protected]>",
"Aron Jansen <[email protected]>"]
readme = "README.md"
license = "GPLv2"
homepage = "https://grainlearning.readthedocs.io/"
repository = "https://github.com/GrainLearning/grainLearning"
keywords = ["Bayesian inference", "Uncertainty quantification", "Non-parametric Gaussian mixture", "DEM", "Constitutive modeling", "Granular materials"]
packages = [
{ include = "grainlearning"}
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
numpy = "^1.23.2"
scipy = "^1.9.1"
scikit-learn = "^1.1.3"
matplotlib = "^3.6.0"
seaborn = '^0.12.2'
Sphinx = {version = "^5.1.1", optional = true}
sphinx-autodoc-typehints = {version = "^1.19.2", optional = true}
sphinx-mdinclude = {version = "*", optional = true}
sphinx-rtd-theme = {version=">=1.1.1", optional = true}
pytest = {version = "^6.2.4", optional = true}
pytest-cov = {version = "^2.12.1", optional = true}
prospector = {version = "^1.7.6", optional = true, extras = ["with_pyroma"]}
pyroma = {version = "^4.0", optional = true}
h5py = {version ="^3.7.0", optional = true}
wandb = {version ="^0.13.4", optional = true}
tensorflow = {version ="^2.10.0", optional = true}
ipykernel = {version = "*", optional = true}
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-autodoc-typehints", "sphinx-mdinclude", "sphinx-rtd-theme"]
dev = ["pytest", "pytest-cov", "prospector", "pyroma", "h5py", "tensorflow", "wandb"]
rnn = ["wandb", "tensorflow"]
tutorials = ["ipykernel"]
visuals = ["seaborn"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"