forked from crflynn/celery-slack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
74 lines (70 loc) · 1.79 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
[tool.black]
line-length = 120
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the root of the project
| \.git
| \.github
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
)
'''
[tool.poetry]
name = "celery_slack"
version = "0.4.2"
description = "A Slack extension for Celery."
authors = ["Christopher Flynn <[email protected]>", "Hikmat Samadov <[email protected]>"]
readme = "README.rst"
license = "MIT"
repository = "https://github.com/s3m3dov/celery-slack"
homepage = "https://github.com/s3m3dov/celery-slack"
packages = [
{ include = "celery_slack" }
]
include = ["HISTORY.rst"]
keywords = ["celery", "slack"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System :: Logging",
"Topic :: System :: Monitoring"
]
[tool.poetry.dependencies]
python = "^3.9"
celery = "^5.2.7"
requests = "^2.28.1"
ephem = "^4.1.3"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
pytest-cov = "^2.7"
pytest-mock = "^1.10"
pytest-xdist = "^1.29"
twine = "^1.13"
sphinx = "^1.8"
sphinx-autobuild = "^0.7.1"
sphinx-rtd-theme = "^0.4.3"
vcrpy = "^2.0"
responses = "^0.10.6"
black = { version = "^18.3-alpha.0", allows-prereleases = true, python = "^3.7" }
redis = "^3.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"