-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 901 Bytes
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 901 Bytes
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
[tool.poetry]
name = "product-mock"
version = "0.1.0"
description = "An exmaple micro service that demonstrates the utility of python-wiremock"
authors = ["Mike Waites <mikey.waites@gmail.com>"]
license = "OSI Approved :: Apache Software License"
readme = "README.md"
packages = [{include = "product_mock"}]
[tool.poetry.dependencies]
python = "^3.10.6"
fastapi = "^0.95.1"
requests = "^2.29.0"
uvicorn = "^0.22.0"
wiremock = { path = "../", develop=true}
httpx = "^0.24.0"
importlib-resources = "^5.12.0"
docker = "^6.1.0"
testcontainers = "^3.7.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
black = "^23.3.0"
isort = "^5.12.0"
mypy = "^1.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
include = '\.pyi?'