-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.52 KB
/
pyproject.toml
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
[project]
name = "al"
dynamic = ["version"]
description = "The automated video engine"
authors = [{ name = "Quaternion Media", email = "[email protected]" }]
dependencies = [
"al-otto >= 0.2.2",
"fastapi<1.0.0,>=0.92.0",
"aiofiles<24.0.0,>=23.1.0",
"python-jose<4.0.0,>=3.3.0",
"fastapi-users<11.0.0,>=10.4.0",
"motor<4.0.0,>=3.1.1",
"beanie<2.0.0,>=1.17.0",
"passlib<2.0.0,>=1.7.4",
"bcrypt<5.0.0,>=4.0.1",
"celery<6.0.0,>=5.3.1",
"google-cloud-storage<3.0.0,>=2.7.0",
"pdfrw<1.0,>=0.4",
"reportlab<4.0.0,>=3.6.12",
"fastapi-users-db-beanie<2.0.0,>=1.1.4",
"fastapi-crudrouter @ git+https://github.com/quaternionmedia/fastapi-crudrouter.git@motor-reupdate",
"ujson>=5.7.0",
"pillow==9.5.0",
]
requires-python = ">=3.8.1,<4.0"
readme = "README.md"
license = { text = "MIT" }
[project.urls]
homepage = "https://github.com/quaternionmedia/alfred"
repository = "https://github.com/quaternionmedia/alfred"
documentation = "https://quaternionmedia.github.io/alfred/"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
dev = ["uvicorn >= 0.20.0", "ruff~=0.0", "black"]
[project.optional-dependencies]
test = [
"pytest >= 7.2.2",
"pytest-cov >= 4.0.0",
"pytest-sugar >= 0.9.6",
"pytest-xdist >= 3.2.1",
"pytest-timeout>=2.1.0",
"httpx>=0.24.0",
]
render = [
"al-otto[render]>=0.2.2",
]
[tool.pdm]
version = { source = "file", path = "alfred/_version.py" }
[tool.pytest.ini_options]
testpaths = ["tests"]