-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
45 lines (40 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "asyncio-foundationdb"
version = "0.12.0"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.poetry]
name = "asyncio-foundationdb"
version = "0.12.0"
description = "FoundationDB drivers for asyncio"
authors = ["ⵄⵎⵉⵔⵓⵛ ⴰⵎⴰⵣⵉⵖ <[email protected]>"]
license = "Apache v2"
readme = "README.md"
build = "found/ffibuild.py"
packages = [
{ include = "found" },
]
[tool.poetry.dependencies]
python = "^3.8"
aiostream = "^0.5"
cffi = "^1"
foundationdb = "^7.3"
immutables = "^0"
loguru = "^0"
more-itertools = "^10"
uuid7 = "^0.1"
uvicorn = "^0.24"
zstandard = "^0.22"
jinja2 = "^3"
[tool.poetry.group.dev.dependencies]
bandit = "*"
black = "*"
isort = "*"
pylama = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-cov = "*"
setuptools = "*"
[build-system]
requires = ["poetry-core", "setuptools", "cffi"]
build-backend = "poetry.core.masonry.api"