-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
84 lines (78 loc) · 1.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sqlalchemy_database"
authors = [
{ name = "Atomi", email = "[email protected]" },
]
maintainers = [
{ name = "Atomi", email = "[email protected]" },
]
description = "SQLAlchemy-Database provides shortcut functions to common database operations for SQLAlchemy ORM."
readme = "README.md"
requires-python = ">=3.7"
dynamic = ["version"]
keywords = [
"SQLAlchemy-Database",
"SQLAlchemy",
"Database",
"AsyncDatabase",
"FastAPI-Amis-Admin",
]
classifiers = [
"Framework :: FastAPI",
"Environment :: Web Environment",
"Topic :: System :: Systems Administration",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"sqlalchemy",
]
[project.urls]
Source = "https://github.com/amisadmin/sqlalchemy_database"
FastAPI-Amis-Admin = "https://github.com/amisadmin/fastapi_amis_admin"
[project.optional-dependencies]
test = [
"pytest >=6.2.4,<7.0.0",
"aiosqlite",
"pytest-cov",
"pytest-asyncio>=0.17",
"httpx",
"sqlmodel",
"fastapi",
]
docs = [
"mkdocs-material>=8.3.8",
"mkdocstrings[python]>=0.19.0",
]
# pytest
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]
# pytest-asyncio
asyncio_mode = "auto"
[tool.isort]
profile = "black"
atomic = true
filter_files = true
[tool.black]
line-length = 130
include = '\.pyi?$'
[tool.pdm.scripts]
lint = "pre-commit run --all-files"
test = "coverage run -m pytest"
[tool.pdm.dev-dependencies]
dev = [
"pre-commit>=2.20.0",
]