-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (44 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
54 lines (44 loc) · 1.13 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
[build-system]
requires = [ "setuptools",]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.9"
name = "synthetic_data_agent"
readme = "README.md"
dynamic = [ "version",]
dependencies = [
"kedro~=1.0.0",
"kedro-datasets",
"playwright",
"fastapi",
"uvicorn[standard]",
"httpx",
"pydantic",
"python-dotenv",
"google-genai"
]
[project.scripts]
synthetic-data-agent = "synthetic_data_agent.__main__:main"
[project.optional-dependencies]
dev = [ "pytest-cov~=3.0", "pytest-mock>=1.7.1, <2.0", "pytest~=7.2", "ruff~=0.12.0",]
[tool.kedro]
package_name = "synthetic_data_agent"
project_name = "synthetic_data_agent"
kedro_init_version = "1.0.0"
tools = "['Linting', 'Data Structure']"
example_pipeline = "False"
source_dir = "src"
[tool.ruff]
line-length = 88
show-fixes = true
[project.entry-points."kedro.hooks"]
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
select = [ "F", "W", "E", "I", "UP", "PL", "T201",]
ignore = [ "E501",]
[tool.setuptools.dynamic.version]
attr = "synthetic_data_agent.__version__"
[tool.setuptools.packages.find]
where = [ "src",]
namespaces = false