-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (54 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
66 lines (54 loc) · 1.18 KB
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
[tool.poetry]
name = "cplpdata"
version = "0.1.0"
description = "Compile information about CPLP"
authors = ["joseevilasio <jose_evilasio@outlook.com>"]
license = "MIT License"
readme = "README.md"
packages = [
{ include = "app" },
]
[tool.poetry.scripts]
cplpdata = "app.cli:app"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.27.0"
[tool.flake8]
exclude = [".venv", "build", ".vscodelocal", "migrations", "./test.py"]
max-line-length = 79
# extend-ignore = "W293,"
[tool.black]
line-length = 79
target-version = ["py36", "py37", "py39", "py310"]
exclude = '''
/(
\.eggs
| \.git
| \.venv
| _build
| build
| dist
| migrations
)/
'''
[tool.isort]
profile = "black"
src_paths = ["app"]
multi_line_output = 3 # VHI
line_length = 79
force_grid_wrap = 0
use_parentheses = true
include_trailing_comma = true
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pandas = "^2.1.2"
pypdf2 = {extras = ["full"], version = "^3.0.1"}
selenium = "^4.15.1"
flake8 = "^6.1.0"
isort = "^5.12.0"
black = "^23.10.1"
typer = {extras = ["full"], version = "^0.9.0"}
pyproject-flake8 = "^6.1.0"
rich = "^13.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"