-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 944 Bytes
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 944 Bytes
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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "doctrl"
version = "0.1.0"
description = "Distributed PostgreSQL configuration tuning controller"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"ruff>=0.1",
"mypy>=1.0",
]
doc = [
"anthropic>=0.25",
"requests>=2.28",
]
eval = [
"httpx>=0.24",
"scikit-learn>=1.2",
]
plot = [
"matplotlib>=3.7",
]
[project.scripts]
doctrl-analysis = "doctrl.cli.run_analysis:main"
doctrl-bootstrap-docs = "doctrl.cli.bootstrap_doc_knobs:main"
doctrl-doc-comparison = "doctrl.cli.run_doc_comparison:main"
doctrl-docgen = "doctrl.docgen.generator:main"
[tool.setuptools.packages.find]
include = ["doctrl*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
testpaths = ["tests"]