-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
74 lines (65 loc) · 1.32 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
[tool.poetry]
name = "opencoverage"
version = "0.1.7"
description = ""
authors = ["vangheem"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^1.5.1"
orjson = "3.3.1"
fastapi = "^0.63.0"
uvicorn = "^0.13.3"
prometheus-client = "^0.8.0"
python-dotenv = "^0.14.0"
aiohttp = "^3.7.3"
lxml = "^4.6.2"
psycopg2-binary = "^2.8.6"
unidiff = "^0.6.0"
cryptography = "^3.3.1"
pyjwt = "^2.0.0"
aiohttp-client-manager = "^1.1.1"
# asyncom = "^0.3.2"
asyncom = { git = "https://github.com/vangheem/asyncom.git", branch = "master" }
lcov_cobertura = "^1.6"
pyyaml = "^5.4.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-asyncio = "^0.12.0"
mypy = "~0.790"
flake8 = "^3.8.1"
isort = "^5.6.4"
black = "^20.8b1"
pytest-rerunfailures = "^9.0"
pytest-cov = "^2.8.1"
async-asgi-testclient = "^1.4.4"
sqlalchemy-stubs = "^0.4"
codecov = "^2.1.11"
ipython = "^7.19.0"
[tool.black]
line-length = 90
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
| \.git
| \.mypy_cache
| \.venv
| _build
| build
| dist
)/
)
'''
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.coverage.run]
branch = true
source = ["opencoverage"]
[tool.poetry.scripts]
opencoverage = 'opencoverage.commands:run_command'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"