-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 791 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 791 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-sql_data_analyst"
version = "0.1.0"
description = "Multi-step SQL Data Investigation Environment for OpenEnv"
requires-python = ">=3.10"
dependencies = [
# Core OpenEnv runtime (provides FastAPI server + HTTP client types)
"openenv-core[core]>=0.2.1",
# SQLite is built into Python stdlib — no extra DB deps needed
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
]
[project.scripts]
server = "sql_data_analyst.server.app:main"
[tool.setuptools]
include-package-data = true
packages = ["sql_data_analyst", "sql_data_analyst.server"]
package-dir = { "sql_data_analyst" = ".", "sql_data_analyst.server" = "server" }