forked from Boavizta/boaviztapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (39 loc) · 898 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
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "boaviztapi"
version = "1.2.2"
description = "An API to access Boavizta's methodologies and footprint reference data"
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
pydantic = '^1.10'
fastapi = '^0.95'
uvicorn = '^0.22'
pandas = '^2.0'
aiofile = '^3.8'
numpy = "^1.24"
scipy = "^1.9"
rapidfuzz = "^3.0"
markdown = "^3.4"
mangum = "^0.17"
importlib-metadata = "^6.6.0"
pyyaml = "^6.0"
toml = "^0.10.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = '*'
pytest-asyncio = '*'
atomicwrites = "*"
httpx = '*'
requests = '*'
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.4.4"
mkdocs-render-swagger-plugin = "^0.1.0"
mkdocs-macros-plugin = "^1.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"