21 lines
391 B
TOML
21 lines
391 B
TOML
[build-system]
|
|
requires = ["setuptools>=70"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ai-typewriter"
|
|
version = "0.1.0"
|
|
description = "Global hotkey AI key-stepper"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"keyboard==0.13.5",
|
|
"pyperclip==1.9.0",
|
|
"requests==2.32.5",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|