mirror of
https://github.com/mblanke/Gov_Travel_App.git
synced 2026-03-01 14:10:22 -05:00
24 lines
464 B
TOML
24 lines
464 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "gov-travel"
|
|
version = "0.1.0"
|
|
description = "Scrape NJC travel rates into SQLite"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"beautifulsoup4==4.12.3",
|
|
"lxml==5.3.0",
|
|
"pandas==2.2.3",
|
|
"requests==2.32.3",
|
|
"openpyxl==3.1.5",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|