-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (55 loc) · 1.25 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
[tool.poetry]
name = "phl-courts-scraper"
version = "0.1.1"
description = "A Python utility to scrape docket sheets and court summaries for Philadelphia courts."
authors = ["Nick Hand <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7.1"
selenium = ">=4.10"
pandas = "^1.3.3"
pdfplumber = "^0.5.28"
intervaltree = "^3.1.0"
desert = "^2020.11.18"
loguru = "^0.5.3"
beautifulsoup4 = "^4.10.0"
tryagain = "^1.0"
importlib-metadata = "<4.3"
[tool.poetry.dev-dependencies]
black = "^21.9b0"
pytest = "^6.2.5"
jupyterlab = "^3.1.18"
ipython = "^7.28.0"
isort = "^5.9.3"
mypy = "^0.930"
pre-commit = "^2.16.0"
flake8 = "^4.0.1"
darglint = "^1.8.1"
flake8-black = "^0.2.3"
flake8-docstrings = "^1.6.0"
types-requests = "^2.26.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''