23 lines
433 B
TOML
23 lines
433 B
TOML
[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"
|
|
dependencies = [
|
|
"googletrans>=4.0.2",
|
|
"pyperclip>=1.9.0",
|
|
"rich>=14.0.0",
|
|
"typer>=0.16.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
elf = "elf.cli:app"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|