This repository was archived by the owner on May 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.34 KB
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
[tool.poetry]
name = "parrot"
version = "1.1.0"
description = "Service for testing http requests and webhooks."
authors = ["Evgeniy Mitin <emitin@uma.tech>"]
maintainers = ["Evgeniy Mitin <emitin@uma.tech>"]
license = "Apache License 2.0"
repository = "https://github.com/Uma-Tech/parrot"
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.8",
"Topic :: Software Development :: Testing"
]
[tool.poetry.dependencies]
python = "~3.8"
django = "~3.1"
django-simpleui = "~2021.3"
uvicorn = "~0.13.4"
psycopg2 = "~2.8.6"
django-environ = "^0.4.5"
django-extensions = "^3.1.3"
django-debug-toolbar = "^3.2.1"
celery = {extras = ["redis"], version = "^5.0.4"}
RestrictedPython = "~5.1"
requests = "^2.25.1"
[tool.poetry.dev-dependencies]
pytest = "~6.2"
pytest-django = "~4.3.0"
pytest-cov = "~2.12.0"
pytest-freezegun = "^0.4.2"
wemake-python-styleguide = "~0.14.1"
flake8-use-fstring = "~1.1"
flake8-django = "~1.1.2"
flake8-type-annotations = "~0.1.0"
flake8-annotations-coverage = "~0.0.5"
ipython = "^7.23.1"
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"