-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 836 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
[project]
name = "roe-ai"
version = "1.0.802"
authors = [
{ name = "Roe AI", email = "founders@roe-ai.com" },
]
description = "Python SDK for the Roe AI API"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
dependencies = [
"attrs>=23.2.0",
"httpx>=0.28.1",
"pydantic>=2.11.7",
"python-dateutil>=2.9.0",
]
[project.urls]
Homepage = "https://github.com/roe-ai/roe-python"
Repository = "https://github.com/roe-ai/roe-python"
[build-system]
requires = ["uv_build"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "roe"
[dependency-groups]
dev = [
"pytest>=8.3.0",
"ruff>=0.12.10",
]
codegen = [
"openapi-python-client>=0.28,<0.29",
"ruamel-yaml>=0.18.15",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
extend-exclude = ["src/roe/_generated"]