forked from fastapi-users/fastapi-users-db-sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
32 lines (30 loc) · 1.02 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
[build-system]
requires = ["flit_core >=2,<3"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "fastapi_users_db_sqlalchemy_asyncpg"
dist-name = "fastapi-users-db-sqlalchemy-asyncpg"
author = "Jonathan Grahl"
author-email = "jonathan@keyholders.io"
home-page = "hhttps://github.com/BPL-Development-Team/fastapi-users-db-sqlalchemy"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: Session",
]
description-file = "README.md"
requires-python = ">=3.7"
requires = [
"fastapi-users >= 6.1.3",
"sqlalchemy >= 1.4",
"sqlalchemy[asyncio] >= 1.4",
"asyncpg >= 0.24"
]
[tool.flit.metadata.urls]
Documentation = "https://fastapi-users.github.io/fastapi-users"