-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
85 lines (69 loc) · 1.49 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 = "tw-experimentation"
version = "0.1.2.4"
description = "Wise AB platform"
authors = ["Wise"]
readme = "README.md"
# packages = [{ include = "tw-experimentation" }]
[build-system]
requires = ["setuptools", "wheel"]
[tool.poetry.scripts]
run_tw_experimentation_streamlit = "tw_experimentation.streamlit.run_streamlit_app_entry_point:main"
[tool.pytest.ini_options]
addopts = "--strict-markers -vv"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
testpaths = [
"tests",
]
# [tool.poetry-version-plugin]
# source = "git-tag"
[tool.poetry.dependencies]
python = ">=3.9,<3.9.7 || >3.9.7,<3.10"
plotly = "^5.17"
streamlit = "^1.28"
statsmodels = "^0.13"
sqlalchemy = "^1.4"
snowflake-sqlalchemy = "^1.5"
matplotlib = "^3.8"
scipy = "1.11.3"
numpy = "1.23.5"
pandas = "<1.5.3"
ipywidgets = "^8.1"
numpyro = "0.13.2"
scikit-learn = "^1.1.3"
wise-pizza = ">=0.2.0"
jupyter = "^1.0"
pytest = "^7.4"
conda-lock = "^2.4.1"
kaleido = "0.2.1"
seaborn = "^0.13.0"
numba = "^0.58.1"
jax = "^0.4.16"
jaxlib = "^0.4.14"
[tool.poetry.group.causaltune]
optional = true
[tool.poetry.group.causaltune.dependencies]
causaltune = "^0.1.3"
[tool.black]
line-length = 88
target_version = ["py39"]
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
)
'''
[tool.isort]
profile = "black"
line_length = 88