-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (32 loc) · 912 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
[tool.poetry]
name = "herenow_demo"
version = "1.1.2"
description = "Demo of Approximate Retrieval capability of LLMs appplied to build a product for Mindful Exploration of Urban Events."
authors = ["Sid <[email protected]>"]
license = "CC BY NC"
readme = "README.md"
packages = [{ include = "herenow_demo", from = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.103.0"
Jinja2 = "^3.1.2"
SQLAlchemy = "2.0.18"
shapely = "^2.0.2"
gunicorn = "^21.2.0"
uvicorn = "^0.23.2"
itsdangerous = "^2.1.2"
mypy = { extras = ["dmypy"], version = "^1.7.0" }
python-dotenv = "^1.0.0"
drop-backend = "1.1.3a0"
# Local testing
# drop-backend = { path = "../drop" }
tomlkit = "^0.12.2"
semver = "^3.0.2"
pytz = "2023.3"
[tool.poetry.extras]
quality = ["mypy"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
herenow_demo = "herenow_demo.main:run"