falsetto 0.0.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.
- falsetto-0.0.0/PKG-INFO +15 -0
- falsetto-0.0.0/README.md +5 -0
- falsetto-0.0.0/pyproject.toml +16 -0
- falsetto-0.0.0/src/falsetto/__init__.py +1 -0
falsetto-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: falsetto
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: A test runner that refuses to count a check unless it can prove the check is capable of failing. Name reserved; first release arrives with the public repository.
|
|
5
|
+
Author: Nat Langman
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Falsetto
|
|
12
|
+
|
|
13
|
+
A test runner that refuses to count a check unless it can prove the check is capable of failing.
|
|
14
|
+
|
|
15
|
+
This release reserves the name. The first working release arrives with the public repository.
|
falsetto-0.0.0/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "falsetto"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "A test runner that refuses to count a check unless it can prove the check is capable of failing. Name reserved; first release arrives with the public repository."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [{ name = "Nat Langman" }]
|
|
13
|
+
classifiers = ["Development Status :: 1 - Planning"]
|
|
14
|
+
|
|
15
|
+
[tool.hatch.build.targets.wheel]
|
|
16
|
+
packages = ["src/falsetto"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Falsetto. Name reserved; the first working release arrives with the public repository."""
|