-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (50 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
61 lines (50 loc) · 1.03 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
61
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ablift"
version = "0.4.0"
description = "Agent-friendly CLI for Bayesian and sequential A/B/n experiment decisions"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Fabio-RibeiroB", email = "bradyfr@proton.me" },
]
dependencies = [
"click>=8.0",
"numpy>=1.22",
"openpyxl>=3.1.0",
]
[dependency-groups]
test = [
"pytest>=8.0",
"scipy>=1.11",
"statsmodels>=0.14",
]
lint = [
"pre-commit>=4.0",
"ruff>=0.11",
"ty>=0.0.1a16",
]
[project.scripts]
ablift = "ablift.cli:cli"
[tool.setuptools.packages.find]
where = ["."]
include = ["ablift*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
extend-exclude = ["*.ipynb"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP", "B"]
[tool.ty]
[tool.ty.src]
include = ["ablift"]
[tool.ablift]
method = "bayesian"
samples = 50000
random_seed = 7
[tool.ablift.decision_policy]
enabled = false