-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
40 lines (30 loc) · 970 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
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "asyncalchemy"
version = "0.0.0" # For poetry-dynamic-versioning
description = "A thin async wrapper for SQLAlchemy sessions."
authors = ["Claroty Open Source <[email protected]>",
"Shaul Kramer <[email protected]>",
"Guy Zylberberg <[email protected]>",
"Amit Itzkovitch <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/claroty/AsyncAlchemy"
documentation = "https://github.com/claroty/AsyncAlchemy"
exclude = ["asyncalchemy/tests"]
[tool.poetry.dependencies]
python = "^3.6"
sqlalchemy = ">= 1.2.0, < 1.4.0"
[tool.poetry.dev-dependencies]
mypy = "^0.790"
pylint = "^2.6"
pytest = "^6.2.1"
pytest-asyncio = "^0.14.0"
[tool.pylint.message_control]
disable = [
"missing-module-docstring",
]
[tool.poetry-dynamic-versioning]
enable = true
[build-system]
requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"]
build-backend = "poetry.masonry.api"