File size: 789 Bytes
35e7795
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "qa"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
    { name = "wangchen", email = "wangchen@zhejianglab.org" }
]
requires-python = ">=3.12"
dependencies = [
    "pydantic",
    "pydantic-settings>=2.0.0",
    "sqlalchemy>=2.0.0",
    "fastapi",
    "python-multipart",
    "email-validator",
    "uvicorn[standard]",
    "python-dotenv>=1.0.0",
    "pyjwt>=2.8.0",
    "httpx>=0.24.0",
]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project.scripts]
qa = "qa_annotate.main:main"

[project.optional-dependencies]
backup = [
    "schedule>=1.2.0",
]

[tool.uv]
package = true

[dependency-groups]
dev = [
    "pre-commit>=4.0.0",
]

[tool.hatch.build.targets.wheel]
packages = ["qa_annotate"]