-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 1.1 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
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I001"]
ignore = ["E721", "E731", "F722", "F821"]
ignore-init-module-imports = true
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.poetry]
name = "bark"
version = "0.1.0"
description = ""
authors = ["TobyBoyne <tobyboyne@gmail.com>"]
license = "LICENSE"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
torch = "^2.2.0"
numpy = "^1.24.4"
matplotlib = "^3.8.2"
gpytorch = "^1.11"
tqdm = "^4.66.1"
scikit-optimize = "^0.9.0"
gurobipy = "12"
lightgbm = "^4.3.0"
botorch = "0.10.0"
beartype = "^0.17.2"
ucimlrepo = "^0.0.6"
numba = "^0.60.0"
xgboost = "^2.1.1"
bofire = {extras = ["cheminfo", "optimization"], version = "^0.0.14"}
numba-scipy = "^0.4.0"
entmoot = "^2.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
ruff = "^0.2.0"
pre-commit = "^3.6.0"
ipython = "^8.21.0"
pytest-benchmark = "^4.0.0"
# [tool.pytest.ini_options]
# addopts = "--benchmark-storage=benchmarks/results --benchmark-autosave --jaxtyping-packages=bark,beartype.beartype"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"