forked from CAVaccineInventory/vaccine-feed-ingest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (61 loc) · 1.6 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
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "vaccine-feed-ingest"
version = "0.1.0"
description = "Pipeline for ingesting nationwide feed of vaccine facilities"
authors = ["Bryan Culbertson <[email protected]>"]
[tool.poetry.dependencies]
# Lint
flake8 = { version = "^3.9.2", optional = true }
black = { version = "^21.5b2", optional = true }
mypy = { version = "^0.812", optional = true }
isort = { version = "^5.8.0", optional = true }
# Test
pytest = { version = "^6.2.4", optional = true }
pytest-runner = {version = "^5.3.1", optional = true}
# Main
python = "^3.9"
click = "^7.1.2"
python-dotenv = "^0.17.0"
pathy = {extras = ["gcs"], version = "^0.5.2"}
arcgis = "^1.8.5"
PyYAML = "^5.4.1"
pydantic = "^1.8.2"
Rtree = "^0.9.7"
Shapely = "^1.7.1"
geojson = "^2.5.0"
us = "^2.0.2"
jellyfish = "0.6.1"
pandas = "^1.2.4"
openpyxl = "^3.0.7"
pytz = "^2021.1"
beautifulsoup4 = "^4.9.3"
vaccine-feed-ingest-schema = "^1.2.5"
aiohttp = "^3.7.4"
TableauScraper = "^0.1.11"
lxml = "^4.6.3"
pykml = "^0.2.0"
html5lib = "^1.1"
url-normalize = "^1.4.3"
dateparser = "^1.0.0"
phonenumbers = "^8.12.24"
pyproj = "^3.1.0"
ndjson = "^0.3.1"
orjson = "^3.5.3"
diskcache = "^5.2.1"
placekey = "^0.0.11"
pygeocodio = "^1.0.0"
usaddress = "^0.5.10"
parse-opening-hours = "^0.4.0"
sentry-sdk = "^1.1.0"
[tool.poetry.dev-dependencies]
tox = "^3.23.1"
[tool.poetry.extras]
lint = ["flake8", "black", "mypy", "isort"]
test = ["pytest", "pytest-runner"]
[tool.poetry.scripts]
vaccine-feed-ingest = "vaccine_feed_ingest.cli:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py38']