-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (48 loc) · 1.01 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
[tool.poetry]
name = "new_celery_config"
version = "0.0.0"
description = "new-celery-config specifies Celery configuration via environment variables."
authors = ["Neocrym Records Inc. <engineering@neocrym.com>"]
license = "MIT"
readme = "README.rst"
classifiers = [
"Topic :: Software Development :: Object Brokering",
"Topic :: System :: Distributed Computing"
]
homepage = "https://github.com/neocrym/new-celery-config"
repository = "https://github.com/neocrym/new-celery-config"
[tool.poetry.dependencies]
python = "^3.8"
PyYAML = "*"
[tool.poetry.dev-dependencies]
pylint = "^2.12.2"
mypy = "^0.941"
black = "^22.1.0"
isort = "^5.10.1"
celery = "^5.0.5"
types-PyYAML = "^6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.svn
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| venv
| build
| dist
| vendor
| bin
)/
)
'''