Files
elf/pyproject.toml
T

23 lines
433 B
TOML
Raw Normal View History

2025-07-09 19:41:46 +08:00
[project]
name = "elf"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "dingfeng.wong", email = "dingfeng.wong@okg.com" }
]
requires-python = ">=3.13"
2025-07-09 19:46:32 +08:00
dependencies = [
2025-07-10 00:00:32 +08:00
"googletrans>=4.0.2",
2025-07-09 21:09:43 +08:00
"pyperclip>=1.9.0",
2025-07-09 19:46:32 +08:00
"rich>=14.0.0",
"typer>=0.16.0",
]
2025-07-09 19:41:46 +08:00
2025-07-09 19:50:57 +08:00
[project.scripts]
elf = "elf.cli:app"
2025-07-09 19:41:46 +08:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"