-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 loc) · 964 Bytes
/
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
[tool.poetry]
name = "oeh-search-meta"
version = "0.1.0"
description = ""
authors = ["Robert Meissner <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9.1"
fastapi = "^0.63.0"
uvicorn = "^0.13.3"
requests = "^2.24.0"
bs4 = "^0.0.1"
adblockparser = "^0.7"
lxml = "^4.6.1"
tldextract = "^3.0.2"
"pdfminer.six" = "^20201018"
PyPDF2 = "^1.26.0"
aiohttp = "^3.7.3"
[tool.poetry.dev-dependencies]
pylint = "^2.6.0"
pre-commit = "^2.10.0"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
pytest-mock = "^3.5.1"
pandas = "^1.2.1"
altair = "^4.1.0"
altair-viewer = "^0.3.0"
black = "^20.8b1"
mkdocs = "^1.1.2"
pip-licenses = "^3.3.0"
wily = "^1.19.0"
vulture = "^2.3"
pyinstrument = "^3.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.venv
| logs
| src\logs
)/
'''
[tool.pytest]
testpaths = "tests"