-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 975 Bytes
/
pyproject.toml
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
[project]
name = "gtfs_rt_tools"
version = "0.1.0"
description = "Tools for working with GTFS Realtime data"
authors = [{name = "Michael Culshaw-Maurer", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"flask>=3.0.3",
"gtfs-realtime-bindings>=1.0.0",
"pandas>=2.2.2",
"pyspark>=3.5.2",
"requests>=2.31.0",
"streamlit-diff-viewer>=0.0.2",
"streamlit>=1.39.0",
"typing-extensions>=4.12.2",
]
[project.scripts]
gtfs-rt-tools = "gtfs_rt_tools.cli:main"
[project.urls]
"Homepage" = "https://github.com/yourusername/gtfs_rt_tools"
"Bug Tracker" = "https://github.com/yourusername/gtfs_rt_tools/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"