-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 765 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 765 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "afsp"
version = "1.0.0"
description = "Agent File Scope Protocol — filesystem perception layer for agents"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"click>=8.1.0",
"bcrypt>=4.1.0",
"watchdog>=3.0.0",
"PyYAML>=6.0",
"requests>=2.31.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"httpx>=0.25.0",
"pytest-cov>=4.1.0",
]
[project.scripts]
afsp = "afsp.cli.main:cli"
[tool.setuptools.packages.find]
include = ["afsp*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: tests requiring external services (Docker, etc.)",
]