forked from TkTech/celery-heimdall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 900 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
[tool.poetry]
name = "celery-heimdall"
version = "1.0.0"
description = "Helpful celery extensions."
authors = ["Tyler Kennedy <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/tktech/celery-heimdall"
repository = "https://github.com/tktech/celery-heimdall"
[tool.poetry.dependencies]
python = "^3.8"
celery = "^5.2.7"
redis = ">=4.3.4"
click = {version = "^8.1.3", optional = true}
SQLAlchemy = {version = "^1.4.40", optional = true}
importlib-metadata = "<=4.13"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
bumpversion = "^0.6.0"
coverage = "^6.4.4"
pytest-cov = "^3.0.0"
black = "^23.9.1"
[tool.poetry.extras]
inspector = ["click", "sqlalchemy"]
[tool.poetry.scripts]
heimdall-inspector = "celery_heimdall.contrib.inspector.cli:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 80