-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (71 loc) · 1.41 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
75
76
77
78
[tool.poetry]
name = "smarttesting-python"
version = "0.0.0"
description = ""
authors = []
[tool.poetry.dependencies]
python = "^3.11"
uvicorn = "*"
requests = "*"
factory-boy = "*"
injector = "*"
pydantic = "*"
fastapi = "*"
wiremock = "*"
sqlalchemy = "*"
docker = "*"
psycopg2-binary = "*"
celery = "*"
marshmallow-dataclass = "*"
marshmallow-enum = "*"
kombu = "*"
flask = "*"
flask-injector = "*"
flask-expects-json = "*"
pytest-docker-compose = "*"
pymongo = "*"
typing-inspect = "*"
selenium = "*"
pylint-forbidden-imports = "*"
pact-python = "*"
pytest-benchmark = "*"
locust = "*"
pybuilder = "*"
invoke = "*"
pytest-rerunfailures = "*"
polling = "*"
pytest-cov = "*"
mutmut = "*"
expects = "*"
responses = "*"
vcrpy = "*"
pytest-randomly = "*"
assertpy = "*"
flask-admin = "*"
prometheus-client = "*"
prometheus-flask-exporter = "*"
freezegun = "*"
types-freezegun = "*"
cached-property = "*"
importlib-metadata = "*"
pyyaml = "5.3.1"
selene = {version = "^2.0.0rc4", allow-prereleases = true}
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
mypy = "*"
black = "*"
flake8 = "*"
pylint = "*"
isort = "*"
pytest = "*"
tavern = "2.2.0"
types-requests = "*"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "-p no:pytest-randomly"
python_files = "test_*.py *_test.py *_tests.py"
markers = "uses_docker wiremock"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"