forked from celery/celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 1 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
[tool.poetry]
name = "indicodata-celery"
version = "5.4.0"
description = "Indico shared utilities"
authors = ["Indico Data <engineering@indicodata.ai>"]
packages = [ {include = "celery"}]
[tool.poetry.dependencies]
python = "^3.7"
pytz = "^2021.3"
billiard = "^3.6.4"
kombu = "^5.2.3"
vine = "^5.0.0"
click = "^8.0.3"
click-didyoumean = "^0.0.3"
click-repl = "^0.2.0"
click-plugins = "^1.1.1"
setuptools = "*"
[tool.poetry.scripts]
celery = "celery.__main__:main"
[tool.pytest.ini_options]
addopts = "--strict-markers"
testpaths = "t/unit/"
python_classes = "test_*"
xdfail_strict=true
markers = ["sleepdeprived_patched_module", "masked_modules", "patched_environ", "patched_module"]
[tool.semantic_release]
version_variable = "celery/__init__.py:__version__"
version_toml = ["pyproject.toml:tool.poetry.version"]
branch = "main"
upload_to_respository=true
repository_url="https://push.fury.io/indico"
build_command="poetry build"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"