-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.37 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
[build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "genstudio"
version = "2025.2.2"
description = ""
authors = [ "Matthew Huebert <[email protected]>",]
license = "MIT"
readme = "README.md"
include = [ "src/genstudio/js/widget_build.js",]
[[tool.poetry.packages]]
include = "genstudio"
from = "src"
[[tool.poetry.source]]
name = "gcp"
url = "https://us-west1-python.pkg.dev/probcomp-caliban/probcomp/simple/"
priority = "explicit"
[tool.pyright]
venvPath = "."
venv = ".venv"
include = [ "src", "tests", "docs",]
exclude = [ "notebooks",]
typeCheckingMode = "standard"
reportUnusedExpression = false
reportFunctionMemberAccess = false
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
anywidget = "^0.9.10"
traitlets = "^5.14.3"
html2image = "^2.0.4.3"
orjson = "^3.10.6"
pillow = "^10.4.0"
[tool.ruff.lint]
ignore = [ "E402",]
[tool.poetry.plugins."mkdocs.plugins"]
"genstudio.docs.plugin" = "genstudio.docs.plugin:APIDocPlugin"
[tool.poetry.group.dev.dependencies]
jax = "0.4.33"
jaxlib = "0.4.33"
watchfiles = "^0.21.0"
jupyter-client = "^8.6.2"
nbformat = "^5.10.4"
mkdocs = "^1.6.0"
mkdocs-jupyter = "^0.24.8"
mkdocs-terminal = "^4.4.0"
mkdocs-material = "^9.5.32"
mkdocs-material-extensions = "^1.3.1"
numpy = ">=1.22,<2.0.0"
mkdocstrings-python = "^1.12.2"
griffe = "^1.5.1"
pytest = "^8.3.3"
anthropic = "^0.39.0"
python-dotenv = "^1.0.1"