-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (23 loc) · 861 Bytes
/
pyproject.toml
File metadata and controls
29 lines (23 loc) · 861 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools-scm>=8", "setuptools_dynamic_dependencies>=1.0.0"]
[tool.setuptools_scm]
git_describe_command = "git describe --long --first-parent"
root = "../.."
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "hackathon_nyc"
dynamic = ["version", "dependencies"]
requires-python = ">=3.11,<3.14"
description = "NYC Hackathon - FloodWatch AI & 311 Command Center (Spark Hack NYC April 2026)"
keywords = ["ai", "rag", "agents", "nyc", "floodwatch", "311"]
classifiers = ["Programming Language :: Python"]
[tool.setuptools_dynamic_dependencies]
dependencies = [
"nvidia-nat[langchain,test] == {version}",
]
[tool.uv.sources]
nvidia-nat = { path = "../..", editable = true }
[project.entry-points.'nat.components']
hackathon_nyc = "hackathon_nyc.register"