-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (33 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
41 lines (33 loc) · 851 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
[tool.poetry]
name = "admin-table"
version = "0.0.29"
description = "Another Dashboard Library for displaying mostly tables"
readme = "README.md"
license = "MIT"
authors = ["Adam Verner <averner@averner.cz>"]
packages = [
{include = "admin_table"},
]
include = [
{ path = "admin_table/ui/**/*", format = ["sdist", "wheel"] }
]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = {version = "*", optional = true}
pyjwt = "^2.10.1"
[tool.poetry.group.dev.dependencies]
fastapi = {extras = ["standard"], version = "^0.114.0"}
ruff = "^0.6.4"
sqlalchemy = "^2.0.34"
mypy = "^1.11.2"
aiosqlite = "^0.21.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["F", "I", "UP"]
[tool.poetry.extras]
fastapi = ["fastapi"]