-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 867 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zerobus-station"
version = "1.0.0"
description = "Configuration-driven FastAPI service for ingesting data into Databricks via Zerobus"
requires-python = ">=3.11"
keywords = ["zerobus", "databricks", "fastapi", "ingestion"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: FastAPI",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
dependencies = [
"fastapi>=0.100.0",
"uvicorn>=0.20.0",
"python-dotenv>=1.0.0",
"databricks-zerobus>=0.0.17",
]
[tool.uv.sources]
databricks-zerobus = { path = "databricks_zerobus-0.0.17-py3-none-any.whl" }