-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (24 loc) · 889 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[tool.poetry]
name = "dont-fuck-with-paste"
version = "0.1.7"
description = "Uses keyboard.write() to simulate pasting"
authors = ["Teddy Xinyuan Chen <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/tddschn/dont-fuck-with-paste"
repository = "https://github.com/tddschn/dont-fuck-with-paste"
classifiers = ["Topic :: Utilities"]
keywords = ["keyboard", "utility", "pasting", "clipboard", "gui", "automation"]
[tool.poetry.scripts]
dfwp = "dont_fuck_with_paste.cli:main"
dont-fuck-with-paste = "dont_fuck_with_paste.cli:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tddschn/dont-fuck-with-paste/issues"
[tool.poetry.dependencies]
python = ">=3.10, <4.0"
# PyAutoGUI = "^0.9.54"
keyboard = "^0.13.5"
pyperclip = "^1.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"