forked from orangasus/VIEWS-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 876 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 876 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
41
42
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "views-challenge"
version = "0.1.0"
description = "VIEWS Challenge: Turning Conflict Forecasts into Accessible APIs"
keywords = []
authors = [
{ name = "Radu", email = "" },
{ name = "Caleb", email = "" },
{ name = "Charles", email = "" }
]
requires-python = ">=3.11,<3.15"
dependencies = [
"fastapi>=0.111.1",
"uvicorn>=0.36.0",
"pydantic>=2.11.9",
"pandas>=1.4.4",
"cachetools>=6.2.0",
"psycopg2-binary>=2.8.1",
"views_pipeline_core==2.1.1"
]
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
"httpx"
]
[project.scripts]
myapp = "views_challenge.__main__:main"
[tool.ruff]
line-length = 88
lint.select = ["E", "F", "N"] # "N" enables naming rules
[tool.hatch.build.targets.wheel]
packages = ["src/views_challenge"]