whet 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- whet-0.2.0/PKG-INFO +32 -0
- whet-0.2.0/README.md +14 -0
- whet-0.2.0/pyproject.toml +31 -0
- whet-0.2.0/whet/__init__.py +6 -0
whet-0.2.0/PKG-INFO
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: whet
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Whet — staff-IC performance edge, sharpened daily. Alias package that depends on bosscam (the canonical distribution until bosscam is retired at v0.3.0).
|
|
5
|
+
Project-URL: Homepage, https://whet.build
|
|
6
|
+
Project-URL: Repository, https://github.com/heymumford/bosscam
|
|
7
|
+
Project-URL: Changelog, https://github.com/heymumford/bosscam/releases
|
|
8
|
+
Author: Eric Mumford
|
|
9
|
+
License: Apache-2.0
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Python: >=3.12
|
|
16
|
+
Requires-Dist: bosscam>=0.2.0
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# Whet
|
|
20
|
+
|
|
21
|
+
Staff-IC performance edge, sharpened daily.
|
|
22
|
+
|
|
23
|
+
This package is a name-reservation alias for the canonical distribution `bosscam`.
|
|
24
|
+
|
|
25
|
+
pip install whet
|
|
26
|
+
|
|
27
|
+
installs `bosscam>=0.2.0` and exposes the `whet` CLI (same binary as `bosscam`).
|
|
28
|
+
|
|
29
|
+
Starting in v0.3.0, `whet` will become the canonical distribution and `bosscam` will be the alias.
|
|
30
|
+
|
|
31
|
+
Homepage: https://whet.build
|
|
32
|
+
Repository: https://github.com/heymumford/bosscam
|
whet-0.2.0/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Whet
|
|
2
|
+
|
|
3
|
+
Staff-IC performance edge, sharpened daily.
|
|
4
|
+
|
|
5
|
+
This package is a name-reservation alias for the canonical distribution `bosscam`.
|
|
6
|
+
|
|
7
|
+
pip install whet
|
|
8
|
+
|
|
9
|
+
installs `bosscam>=0.2.0` and exposes the `whet` CLI (same binary as `bosscam`).
|
|
10
|
+
|
|
11
|
+
Starting in v0.3.0, `whet` will become the canonical distribution and `bosscam` will be the alias.
|
|
12
|
+
|
|
13
|
+
Homepage: https://whet.build
|
|
14
|
+
Repository: https://github.com/heymumford/bosscam
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "whet"
|
|
7
|
+
version = "0.2.0"
|
|
8
|
+
description = "Whet — staff-IC performance edge, sharpened daily. Alias package that depends on bosscam (the canonical distribution until bosscam is retired at v0.3.0)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
license = {text = "Apache-2.0"}
|
|
12
|
+
authors = [{name = "Eric Mumford"}]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 4 - Beta",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: Apache Software License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.12",
|
|
19
|
+
]
|
|
20
|
+
dependencies = ["bosscam>=0.2.0"]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://whet.build"
|
|
24
|
+
Repository = "https://github.com/heymumford/bosscam"
|
|
25
|
+
Changelog = "https://github.com/heymumford/bosscam/releases"
|
|
26
|
+
|
|
27
|
+
[project.scripts]
|
|
28
|
+
whet = "bosscam.cli:main"
|
|
29
|
+
|
|
30
|
+
[tool.hatch.build.targets.wheel]
|
|
31
|
+
packages = ["whet"]
|