-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
41 lines (36 loc) · 1005 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
[tool.poetry]
name = "pyfaktory"
version = "0.2.9"
description = "Faktory Client Python (Producer and Consumer/Worker)"
license = "MIT"
authors = ["Ghiles Meddour <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/ghilesmeddour/faktory_worker_python"
repository = "https://github.com/ghilesmeddour/faktory_worker_python"
documentation = "https://github.com/ghilesmeddour/faktory_worker_python"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.9"
Pebble = "^5.0.5"
rfc3339-validator = "^0.1.4"
pydantic = "^2.5.2"
[tool.poetry.extras]
sentry = ["sentry-sdk"]
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
mypy = "^1.7.1"
coverage = "^7.3.2"
vulture = "^2.10"
pytest = "^7.4.3"
numpy = "^1.26.2"
xarray = "^2023.12.0"
twine = "^4.0.2"
isort = "^5.13.2"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"