-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (70 loc) · 1.57 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
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "brilliance-admin"
version = "0.45.114"
description = 'Simple and lightweight data managment framework powered by FastAPI and Vue3 Vuetify all-in-one. Some call it heavenly in its brilliance.'
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
dependencies = [
"asgiref>=3.11",
"fastapi>=0.115",
"jinja2>=3.1",
"PyYAML>=6.0",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["brilliance_admin*"]
[tool.setuptools.package-data]
brilliance_admin = [
"static/**/*",
"templates/**/*",
"locales/**/*.yml",
]
[project.optional-dependencies]
example = [
"uvicorn>=0.34.0",
"faker>=38.2.0",
"pyjwt>=2.10.1",
"structlog>=25.5.0",
"rich>=14.2.0",
"asyncpg>=0.31.0",
"pydantic-settings>=2.12.0",
"twine",
]
tests = [
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"httpx>=0.28.1",
"pytest-mock>=3.15.1",
"sqlalchemy>=2.0.41",
"aiosqlite>=0.22.1",
"factory-boy>=3.3.3",
"pyjwt>=2.10.1",
"testcontainers>=4.14.1",
"django>=5.2.15",
"django-timezone-field>=7.1",
"psycopg[binary]>=3.2.9",
]
dev = [
"ruff>=0.9.0",
"yappi>=1.7.6",
]
scalar = [
"scalar-fastapi>=1.5.0",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
"tests/*" = ["F841"]
"example/*" = ["E712"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "-m 'not benchmark'"
markers = [
"benchmark: slow/manual performance tests",
]