32 lines
770 B
TOML
32 lines
770 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",
|
|
]
|
|
|
|
[project.scripts]
|
|
pyhld = "pyhld.cli:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/pyhld"] |