-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
50 lines (38 loc) · 1.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
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "formation"
version = "0.1.36"
authors = ["Dotan Nahum <[email protected]>"]
description = "A generic functional middleware infrastructure for Python."
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jondot/formation"
repository = "https://github.com/jondot/formation"
documentation = "https://github.com/jondot/formation"
keywords = ["flask", "django", "requests", "middleware", "functional"]
[tool.poetry.dependencies]
python = ">2.7.13 <3.0.0 || ^3.7"
toolz = "^0.9.0"
cytoolz = "^0.9.0"
requests = "^2.20"
pybreaker = "^0.4.5"
xmltodict = "^0.11.0"
lxml = "^4.2"
attrs = "^19.1"
attrs-serde = "^0.2.2"
[tool.poetry.dev-dependencies]
pytest-cov = "^2.6"
pytest-sugar = "^0.9.2"
boltons = "^18.0"
pytest = "^3.0"
pytest-benchmark = "^3.1"
pytest-watch = "^4.2"
snapshottest = { git = "https://github.com/jondot/snapshottest", branch="serialize-snapshots" }
flake8 = { version = "^3.5" }
requests = "^2.20"
pytest-vcr = "^1.0"
structlog = "^18.2"
[tool.poetry.extras]
lint = ["flake8-mypy"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"