This repository was archived by the owner on Oct 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (74 loc) · 1.97 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
77
78
79
80
81
82
83
84
85
[tool.poetry]
name = "confirm"
version = "0.1.0"
description = ""
authors = [
"Confirm Solutions <[email protected]>",
]
packages = [
{ include = "confirm" },
{ include = "imprint", from = "imprint" },
]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.11"
numpy = "^1.24.2"
scipy = "^1.10.1"
sympy = "^1.11.1"
pandas = "^1.5.3"
jax = "^0.4.6"
numpyro = "^0.11.0"
duckdb = "^0.7.1"
tensorflow-probability = "^0.19.0"
synchronicity = "^0.2.14"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
matplotlib = "^3.7.1"
pytest = "^7.2.2"
pre-commit = "^3.2.0"
pytest-xdist = {extras = ["psutil"], version = "^3.2.1"}
ipython = "^8.11.0"
nbformat = "^5.8.0"
python-dotenv = "^0.21.1"
[tool.poetry.group.cloud]
optional = true
[tool.poetry.group.cloud.dependencies]
pyarrow = "^10.0.1"
boto3 = "^1.26.96"
cloudpickle = [
{ version = ">=2.0.0,<2.1.0", python = "<3.11" },
{ version = ">=2.2.0,<2.3.0", python = ">=3.11" },
]
clickhouse-connect = "^0.5.16"
coiled = "^0.5.6"
dask = {extras = ["complete"], version = "^2023.3.1"}
modal-client = "^0.46.1567"
pynvml = "^11.5.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
poetry = "1.4.0"
black = {extras = ["jupyter"], version = "^23.1.0"}
line-profiler = "^3.5.1"
jupytext = "^1.14.5"
reorder-python-imports = "^3.9.0"
flake8 = "^6.0.0"
typer = "^0.7.0"
jupyter = "^1.0.0"
rich = "^13.3.2"
ipdb = "^0.13.13"
tomli-w = "^1.0.0"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "-p imprint.testing --capture=no --show-capture=no --tb=short --strict-markers --doctest-modules"
testpaths = ["tests", "imprint/tests"]
filterwarnings = ["ignore:Deprecated call to `pkg_resources.declare_namespace:DeprecationWarning", "ignore:pkg_resources is deprecated as an API:DeprecationWarning"]
[tool.jupytext]
notebook_metadata_filter = "-all"
cell_metadata_filter = "-all"
[build-system]
requires = [
"poetry-core>=1.0.0",
]
build-backend = "poetry.core.masonry.api"