-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
79 lines (71 loc) · 1.96 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool]
[tool.poetry]
name = "sherlock"
version = "0.4.1"
description = "Distributed inter-process locks with a choice of backend"
license = "MIT"
authors = [
"Vaidik Kapoor <[email protected]>",
]
maintainers = [
"Vaidik Kapoor <[email protected]>",
"Judah Rand <[email protected]>",
]
readme = "README.rst"
homepage = "https://github.com/py-sherlock/sherlock"
repository = "https://github.com/py-sherlock/sherlock"
keywords = ["locking"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"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",
]
packages = [
{ include = "sherlock" },
]
[tool.poetry.dependencies]
python = "^3.7"
filelock = { version = "^3.7.1", optional = true }
kubernetes = { version = "^24.2.0", optional = true }
redis = { version = "^4.3.4", optional = true }
python-etcd = { version = "^0.4.5", optional = true }
pylibmc = { version = "^1.6.1", optional = true }
[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
flake8 = "^5.0.4"
isort = "^5.10.1"
mypy = "^0.981"
pycodestyle = "^2.9.1"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
tox = "^3.25.1"
tox-docker = { git = "https://github.com/judahrand/tox-docker.git", branch = "judah" }
tox-gh-actions = "^2.9.1"
tox-poetry = "^0.4.1"
types-filelock = "^3.2.7"
types-redis = "^4.3.21"
[tool.poetry.extras]
all = [
"filelock",
"kubernetes",
"redis",
"etcd",
"pylibmc",
]
filelock = ["filelock"]
kubernetes = ["kubernetes"]
redis = ["redis"]
etcd = ["python-etcd"]
memcached = ["pylibmc"]
[tool.isort]
profile = "black"
src_paths = ["sherlock", "tests"]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"