-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
60 lines (54 loc) · 1.57 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
[tool.poetry]
name = "kesha"
version = "2.2.1"
description = "Service for testing http requests and webhooks."
authors = ["Evgeniy <[email protected]>"]
maintainers = ["Evgeniy Mitin <[email protected]>"]
license = "Apache License 2.0"
repository = "https://github.com/NUTtech/Kesha"
readme = "README.md"
keywords = ["testing", "webhook", "postbin", "http", "requests"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Testing"
]
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "kesha.settings"
[tool.poetry.dependencies]
python = "~3.10"
django = "~4.1"
django-simpleui = "~2022.7"
uvicorn = "~0.18.2"
psycopg2-binary = "~2.9.3"
django-environ = "^0.9.0"
django-extensions = "^3.2.0"
django-debug-toolbar = "^3.5.0"
celery = { extras = ["redis"], version = "^5.2.7" }
RestrictedPython = "~5.2"
requests = "^2.28.1"
[tool.poetry.dev-dependencies]
pytest = "~7.1"
pytest-django = "~4.5.2"
pytest-cov = "~3.0.0"
pytest-freezegun = "^0.4.2"
wemake-python-styleguide = "~0.16.1"
flake8-use-fstring = "~1.4"
flake8-django = "~1.1.5"
flake8-annotations-coverage = "~0.0.6"
ipython = "^8.4.0"
mypy = "^0.971"
django-stubs = "^1.12.0"
celery-types = "^0.13.1"
django-stubs-ext = "^0.5.0"
pytest-mypy-plugins = "^1.9.3"
types-requests = "^2.28.8"
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"