-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 890 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 890 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
38
39
40
41
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "restrack"
description = "Python application for results tracking."
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [{ name = "vvcb" }]
dependencies = [
"pyodbc",
"python-dotenv",
"sqlmodel",
"watchfiles",
"fastapi[standard]",
"jinja2",
"python-multipart",
"python-jose[cryptography]>=3.5.0",
"passlib[bcrypt]>=1.7.4",
"pyjwt>=2.10.1",
]
dynamic = ["version"]
[tool.setuptools]
packages = ["restrack"]
[tool.setuptools.dynamic]
version = { attr = "restrack.__version__" }
[project.urls]
Homepage = "https://github.com/LTHTR-DST/restrack"
# Documentation = "https://vvcb.github.io/restrack/"
[dependency-groups]
dev = [
"alembic>=1.16.1",
"pre-commit>=4.0.1",
"ruff>=0.8.2",
]