-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 954 Bytes
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 954 Bytes
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
[project]
name = "query"
version = "0.1.0"
description = ""
authors = [
{name = "Bharat Kathi",email = "bkathi@ucsb.edu"},
{name = "Jacob Jurek", email = "jacobjurek@ucsb.edu"},
{name = "Madhav Viswesvaran", email = "madhav@ucsb.edu"},
]
readme = "README.md"
requires-python = ">=3.12,<4.0"
dependencies = [
"fastapi>=0.115.10,<0.116.0",
"uvicorn>=0.34.0,<0.35.0",
"dotenv>=0.9.9,<0.10.0",
"sqlalchemy>=2.0.38,<3.0.0",
"psycopg2-binary>=2.9.10,<3.0.0",
"numpy>=2.2.3,<3.0.0",
"pandas>=2.2.3,<3.0.0",
"loguru>=0.7.3,<0.8.0",
"pyarrow>=20.0.0,<21.0.0",
"requests>=2.32.3,<3.0.0",
"pyjwt[crypto]>=2.11.0,<3.0.0",
"mapache-py>=3.0.1,<4.0.0",
"rincon>=1.0.0,<2.0.0",
"gr-ulid>=1.1.2,<2.0.0",
]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
]
[project.scripts]
query = "query.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"