-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
61 lines (56 loc) · 1.95 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cmdclip"
version = "1.0.1"
description = "Smart cross-platform command clipboard manager — save, tag, search & run shell commands with AI-powered auto-tagging"
readme = "README.md"
license = { text = "GPL-3.0" }
authors = [{ name = "M5 Dev", email = "m5dev@proton.me" }]
keywords = [
"cli", "terminal", "shell", "command-manager", "clipboard",
"snippets", "productivity", "ai", "groq", "cross-platform",
"linux", "macos", "windows", "history", "search", "tags",
"devtools", "sysadmin", "automation", "dotfiles"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Terminals",
]
requires-python = ">=3.10"
dependencies = [
"typer>=0.12",
"rich>=13",
"pyperclip>=1.8",
"groq>=0.9",
]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov"]
[project.scripts]
cmdclip = "cmdclip.cli:main"
[project.urls]
Homepage = "https://github.com/M5Develop/cmdclip"
Repository = "https://github.com/M5Develop/cmdclip"
Issues = "https://github.com/M5Develop/cmdclip/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["cmdclip*"]