-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
27 lines (26 loc) · 913 Bytes
/
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
[tool.poetry]
name = "sqla-async-orm-queries"
version = "2.0.0-beta"
description = "Base model for SqlAlchemy async orm queries"
authors = ["Amrah <bagirovemrah97@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/amrahhh/sqla_async_orm_queries"
repository = "https://github.com/amrahhh/sqla_async_orm_queries"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.8.2"
sqlalchemy = ">=2.0.21"
asyncpg = ">=0.28.0"
greenlet = "^3.0.3"