-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (35 loc) · 1.08 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
[tool.poetry]
authors = []
description = "Scrape Massachusetts State House lobbying data"
name = "maple-lobbying"
packages = [{ include = 'src' }]
version = "0.1.0"
[tool.poetry.dependencies]
beautifulsoup4 = "^4.11.2"
certifi = "^2022.12.7"
charset-normalizer = "^3.0.1"
fastparquet = "^2024.2.0"
idna = "^3.4"
ipython = "^8.23.0"
lxml = "^4.9.2"
pandas = "^2.2.1"
psycopg2 = "^2.9.5"
python = ">=3.10,<4.0"
requests = "^2.28.2"
selenium = "^4.19.0"
soupsieve = "^2.4"
undetected-chromedriver = "^3.5.5"
urllib3 = "^1.26.14"
webdriver-manager = "^4.0.1"
[tool.poetry.group.synth.dependencies]
aws-cdk-lib = "^2.67.0"
constructs = "^10.1.268"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
pytest = "^7.2.2"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]