-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.1 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "copybuffer"
version = "1.6.1"
description = "A command-line utility for copying file contents, directory contents, or STDIN input to the system clipboard."
authors = [
{ name = "Draeician", email = "[email protected]" }
]
license = { file = "LICENSE" }
readme = "README.md"
homepage = "https://github.com/draeician/copybuffer"
repository = "https://github.com/draeician/copybuffer"
keywords = ["clipboard", "utility", "command-line", "python"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pyperclip",
"Pillow",
"tiktoken"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"black",
"flake8",
]
[tool.pipx]
include = ["copybuffer"]
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.hatch.build.targets.wheel]
packages = ["copybuffer"]
[project.scripts]
cb = "copybuffer:main" # Primary command
"cb.py" = "copybuffer:main" # Alias with .py extension