-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.07 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
[tool.poetry]
name = "phl-budget-data"
version = "0.2.1"
description = "Python toolkit to aggregate and clean City of Philadelphia budget-related data"
authors = ["Nick Hand <[email protected]>"]
license = "MIT"
readme = "README.md"
exclude = [
"src/phl_budget_data/data/etl",
"src/phl_budget_data/etl",
"src/phl_budget_data/cli",
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
click = "8.0.1"
numpy = ">=1.20"
pandas = ">=1.2"
openpyxl = "^3.0.7"
rich-click = "^0.3.0"
pydantic = "^1.9.0"
loguru = "^0.5.3"
billy-penn = "0.1.8"
selenium = ">=4.10"
[tool.poetry.group.dev.dependencies]
black = "^20.8b1"
jupyterlab = "^3.0.5"
matplotlib = "^3.3.4"
jupyterlab_code_formatter = "^1.4.2"
isort = "^5.7.0"
selenium = ">=4.10"
pdfplumber = "0.7.5"
requests = ">=2.27.0"
intervaltree = "^3.1.0"
python-dotenv = "0.19.2"
boto3 = "^1.17.12"
beautifulsoup4 = "^4.9.3"
textual = "^0.1.15"
mypy = "^0.941"
pdfminer-six = "20220524"
[tool.poetry.scripts]
phl-budget-data = "phl_budget_data.cli.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"