2026-06-18 10:41:38 +00:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=61"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
2026-06-11 17:13:50 +00:00
|
|
|
[project]
|
|
|
|
|
name = "fleettickets"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Field-ops INC/CRQ ticket ingestion, geocoding, and read-schema for the FleetOps Tickets map"
|
|
|
|
|
requires-python = ">=3.12"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"psycopg2-binary>=2.9.9", # DB driver
|
|
|
|
|
"requests>=2.32.3", # geocoder HTTP
|
2026-06-15 17:08:05 +00:00
|
|
|
"boto3>=1.34", # S3 (rustfs) access — no aws-CLI dependency
|
2026-06-11 17:13:50 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"ruff>=0.4",
|
|
|
|
|
]
|
|
|
|
|
|
2026-06-18 10:41:38 +00:00
|
|
|
# Flat-module project (no package dir) — list the top-level modules explicitly so
|
|
|
|
|
# `pip install .` works (the Docker image installs the project to pull its deps).
|
|
|
|
|
[tool.setuptools]
|
|
|
|
|
py-modules = ["import_tickets", "shared", "run_migrations"]
|
|
|
|
|
|
2026-06-11 17:13:50 +00:00
|
|
|
[tool.uv]
|
|
|
|
|
managed = true
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
target-version = "py312"
|
|
|
|
|
line-length = 100
|
|
|
|
|
lint.select = ["E", "W", "F", "B", "UP"]
|