pyhld/pyproject.toml
2025-04-21 08:57:35 -05:00

34 lines
817 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyhld"
version = "0.1.0"
description = "Fiber to the Home High Level Design CLI Tool"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Your Name", email = "your.email@example.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Telecommunications Industry",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"click>=8.1.8",
"rich>=14.0.0",
"geopandas>=1.0.1",
"networkx>=3.4.2",
]
[project.scripts]
pyhld = "pyhld.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/pyhld"]