-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.28 KB
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
[tool.poetry]
name = "numpyro_play"
version = "0.3.0"
description = ""
authors = ["Benjamin Datko"]
[tool.commitizen]
version = "0.3.0"
tag_format = "v$version"
version_files = [
"numpyro_play/__init__.py",
"pyproject.toml:version"
]
[tool.poetry2conda]
name = "numpyro_play"
[tool.poetry2conda.dependencies]
ipython = { channel = "anaconda" }
ipykernel = { channel = "anaconda" }
black = { channel = "pip" }
commitizen = { channel = "pip" }
poetry2conda = { channel = "pip" }
matplotlib = { channel = "conda-forge" }
jupytext = { channel = "conda-forge" }
fire = { channel = "conda-forge" }
numpyro = { channel = "conda-forge" }
funsor = { channel = "pip" }
daft = { channel = "pip" }
[tool.poetry.dependencies]
python = "^3.7"
jupyter = "^1.0.0"
ipykernel = "^5.3.4"
ipython = "^7.16.1"
matplotlib = "^3.4.2"
seaborn = "^0.11.1"
jupytext = "^1.11.3"
statsmodels = "^0.12.2"
tabulate = "^0.8.9"
nbconvert = "^6.1.0"
fire = "^0.4.0"
arviz = "^0.11.2"
funsor = "^0.4.1"
daft = "^0.1.2"
scikit-learn = "^0.24.2"
watermark = "^2.2.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
poetry2conda = "^0.3.0"
black = "^21.6b0"
mypy = "^0.910"
commitizen = "^2.17.11"
pylint = "^2.9.1"
hypothesis = "^6.14.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"