forked from meta-pytorch/botorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (79 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
91 lines (79 loc) · 1.72 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools", "setuptools_scm[toml]", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "botorch"
description = "Bayesian Optimization in PyTorch"
authors = [{name = "Meta Platforms, Inc."}]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["Bayesian optimization", "PyTorch"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
]
dynamic = ["version"]
dependencies = [
"typing_extensions",
"pyre_extensions",
"gpytorch>=1.14.2",
"linear_operator>=0.6",
"torch>=2.0.1",
"pyro-ppl>=1.8.4",
"scipy",
"multipledispatch",
"threadpoolctl",
]
[project.optional-dependencies]
pymoo = [
"pymoo",
]
test = [
"pytest",
"pytest-cov",
"requests",
"pymoo",
"pfns"
]
dev = [
"botorch[test]",
"flake8",
"ufmt",
"flake8-docstrings",
"sphinx",
"sphinx-rtd-theme",
]
tutorials = [
"cma",
"jupyter",
"matplotlib",
"memory_profiler",
"papermill",
"pykeops",
"torchvision",
"mdformat",
"pandas",
"lxml",
"mdformat-myst",
"tabulate",
]
[project.urls]
Homepage = "https://botorch.org"
Documentation = "https://botorch.org"
Repository = "https://github.com/meta-pytorch/botorch"
[tool.setuptools.packages]
find = {exclude = ["test", "test.*"]}
[tool.setuptools_scm]
local_scheme = "node-and-date"
write_to = "./botorch/version.py"
[tool.usort]
first_party_detection = false
[tool.ufmt]
formatter = "ruff-api"
[tool.coverage.report]
omit = ["test/*", "test_community/*"]