-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) · 2.24 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (71 loc) · 2.24 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ccmd"
version = "1.2.0"
description = "Cross-platform Command Manager - Simplify your terminal with intuitive shortcuts"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
authors = [
{name = "De Catalyst", email = "Robert5560newton@gmail.com"}
]
maintainers = [
{name = "De Catalyst", email = "Robert5560newton@gmail.com"}
]
keywords = [
"cli", "command-line", "terminal", "productivity", "automation",
"shell", "commands", "shortcuts", "developer-tools", "cross-platform"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Utilities",
]
dependencies = [
"PyYAML>=6.0",
"questionary>=2.0.0",
"GitPython==3.1.45",
"bcrypt>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"bandit>=1.7",
"safety>=2.0",
]
[project.urls]
Homepage = "https://github.com/Wisyle/ccmd"
Documentation = "https://github.com/Wisyle/ccmd#readme"
Repository = "https://github.com/Wisyle/ccmd"
"Bug Tracker" = "https://github.com/Wisyle/ccmd/issues"
Security = "https://github.com/Wisyle/ccmd/security"
Changelog = "https://github.com/Wisyle/ccmd/releases"
[project.scripts]
ccmd = "ccmd.cli.main:main"
[tool.setuptools]
packages = ["ccmd", "ccmd.cli", "ccmd.core"]
[tool.setuptools.package-data]
ccmd = ["../commands.yaml"]
[tool.bandit]
exclude_dirs = ["tests", ".venv", "venv"]
skips = ["B603", "B607"]