-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (58 loc) · 1.85 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
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vylth-annotator"
version = "0.0.3"
description = "Drop-in design-feedback widget. Click → page freezes → drag a rect → engineer pulls the diagnostic envelope. Self-hostable on localhost."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Vylth Labs", email = "labs@vylth.com" }]
keywords = ["annotation", "feedback", "screenshot", "widget", "diagnostics", "developer-tools"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"sqlalchemy[asyncio]>=2.0",
"aiosqlite>=0.20",
"pydantic>=2.6",
"pydantic-settings>=2.2",
"httpx>=0.27",
"click>=8.1",
]
[project.optional-dependencies]
postgres = ["asyncpg>=0.29", "psycopg[binary]>=3.1"]
storage = ["boto3>=1.34"] # R2 / S3-compatible image storage for large shots
dev = ["pytest>=8.0", "pytest-asyncio>=0.23"]
[project.urls]
Homepage = "https://github.com/VYLTH/annotator"
Repository = "https://github.com/VYLTH/annotator"
Issues = "https://github.com/VYLTH/annotator/issues"
[project.scripts]
annotator = "vylth_annotator.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/vylth_annotator"]
artifacts = [
"src/vylth_annotator/static/*",
"src/vylth_annotator/templates/*",
"src/vylth_annotator/migrations/*",
"src/vylth_annotator/skill/*",
]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
"/pyproject.toml",
]