-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 1.23 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "blacksheep-sqlalchemy"
version = "0.0.4"
authors = [{ name = "Roberto Prevato", email = "roberto.prevato@gmail.com" }]
description = "Extension for BlackSheep to use SQLAlchemy."
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
keywords = ["blacksheep", "sqlalchemy", "orm", "database"]
dependencies = ["blacksheep", "SQLAlchemy~=2.0.24"]
[tool.hatch.build.targets.wheel]
packages = ["blacksheepsqlalchemy"]
[tool.hatch.build.targets.sdist]
exclude = ["tests"]
[tool.hatch.build]
only-packages = true
[project.urls]
"Homepage" = "https://github.com/Neoteroi/BlackSheep-SQLAlchemy"
"Bug Tracker" = "https://github.com/Neoteroi/BlackSheep-SQLAlchemy/issues"
[tool.pytest.ini_options]
asyncio_mode = "auto"