-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 813 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (29 loc) · 813 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "dfx-agent"
version = "0.1.0"
description = "Local session store: record work, pair a device, sync bidirectionally with the hub."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
authors = [{ name = "DFX" }]
dependencies = [
"httpx>=0.27.0",
"websockets>=13",
"psycopg[binary]>=3.2.0",
"PyYAML>=6.0.2,<7",
]
[project.optional-dependencies]
test = ["pytest>=8.3.0"]
[project.scripts]
agent = "agent_cli.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
agent_cli = ["static/*", "skills/**"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
markers = ["no_pg: tests that must not start a PostgreSQL cluster"]