-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (52 loc) · 869 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
55
56
57
[tool.poetry]
name = "chicago-elections-archive"
version = "0.1.0"
description = ""
authors = []
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
beautifulsoup4 = "^4.11.1"
requests = "^2.28.1"
csvkit = "^1.0.7"
esridump = "^1.11.0"
[tool.poetry.dev-dependencies]
black = "^22.10.0"
flake8 = "^5.0.4"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
exclude = '''
/(
\.git
| \.pytest_cache
| \.tox
| \.venv
| \.vscode
| __pycache__
| build
| coverage
| dist
)/
'''
[tool.isort]
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"FIRSTPARTY",
"LOCALFOLDER",
]
skip_glob = [
"*/.venv/*",
"*/.pytest_cache/*",
"*/dist/*",
"*/build/*",
]
multi_line_output = 3
line_length = 88
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true