-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 877 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
[tool.poetry]
name = "send-the-raven"
version = "0.1.2"
description = "A collection of toolkit and algorithms for handling US addresses"
authors = ["Bang Koboi <[email protected]>"]
readme = "README.rst"
packages = [{include = "send_the_raven"}]
include = ["send_the_raven/state and us cities.json"]
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.3.0"
usaddress-scourgify = "^0.5.1"
xmltodict = "^0.13.0"
aiohttp = "^3.8.5"
asyncio = "^3.4.3"
geopy = "^2.4.0"
h3 = "^3.7.6"
[tool.poe.tasks]
test.cmd = "pytest"
test.envfile = ".env.dev"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.2"
coverage = "^7.2.7"
poethepoet = "^0.22.0"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.1"
sphinx-readme = "^0.2.3"
sphinx-favicon = "^1.0.1"
sphinx-book-theme = "^1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"