-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.04 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
[build-system]
requires = [ "setuptools>=61" ]
[project]
name = "doc-api"
version = "0.0.0"
description = "DocAPI"
authors = [
{name = "Jan Kohút", email = "ikohut@fit.vut.cz"},
{name = "Martin Kišš", email = "ikiss@fit.vut.cz"},
{name = "Michal Hradiš", email = "ihradis@fit.vut.cz"}
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"aiofiles",
"alembic",
"asyncpg",
"defusedxml",
"fastapi",
"greenlet",
"httpx",
"mailinglogger",
"natsort",
"numpy",
"opencv_python",
"opencv_python_headless",
"pydantic",
"pytest",
"pytest_asyncio",
"python-multipart",
"Requests",
"SQLAlchemy",
"starlette",
"uvicorn"
]
[project.urls]
repository = "https://github.com/DCGM/DocAPI"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.*"]
[tool.setuptools.package-dir]
"doc_api" = "doc_api"
"doc_client" = "doc_client"
"doc_worker" = "doc_worker"
[project.scripts]
doc_api = "doc_api.run:main"