-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 1.11 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
[tool.poetry]
name = "shylock"
version = "1.2.1"
description = "Distributed locks in Python, similar to https://github.com/vaidik/sherlock - also with asyncio support"
authors = ["Janne Enberg <janne.enberg@lietu.net>"]
license = "BSD-3-Clause"
readme = "README.rst"
homepage = "https://github.com/lietu/shylock/"
repository = "https://github.com/lietu/shylock/"
documentation = "https://github.com/lietu/shylock/"
keywords = ["distributed", "locking", "lock", "asyncio"]
packages = [
{ include = "shylock" },
]
[tool.poetry.dependencies]
python = "^3.7"
aioarangodb = { version = "^0.1.2", optional = true }
motor = { version = "^3.0.0", optional = true }
pymongo = { version = "^4.1", optional = true }
python-arango = { version = "^5.4.0", optional = true }
[tool.poetry.extras]
aioarangodb = ["aioarangodb"]
motor = ["motor"]
pymongo = ["pymongo"]
python-arango = ["python-arango"]
[tool.poetry.group.dev.dependencies]
pytest = "^6.0.0"
pytest-asyncio = "^0.20.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target_version = ["py36"]
[tool.isort]
profile = "black"