quadkit-testing 0.0.1__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.
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: quadkit-testing
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Centralized testing infrastructure for QuadKit - fixtures, fakes, and utilities
|
|
5
|
+
Project-URL: Homepage, https://quadkit.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/dbtinoy-/quadkit
|
|
7
|
+
Project-URL: Documentation, https://quadkit.dev
|
|
8
|
+
Project-URL: Issues, https://github.com/dbtinoy-/quadkit/issues
|
|
9
|
+
Author-email: QuadKit Team <team@quadkit.dev>
|
|
10
|
+
Maintainer-email: QuadKit Team <team@quadkit.dev>
|
|
11
|
+
License: Apache-2.0
|
|
12
|
+
Keywords: fakes,fixtures,pytest,quadkit,testing
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Framework :: AsyncIO
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
23
|
+
Classifier: Typing :: Typed
|
|
24
|
+
Requires-Python: >=3.11
|
|
25
|
+
Requires-Dist: quadkit-contracts>=0.0.1
|
|
26
|
+
Requires-Dist: quadkit>=0.0.1
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
|
|
29
|
+
# quadkit-testing
|
|
30
|
+
|
|
31
|
+
Centralized testing infrastructure for QuadKit - fixtures, fakes, and utilities.
|
|
32
|
+
|
|
33
|
+
This is a placeholder package for name reservation on PyPI.
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "quadkit-testing"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Centralized testing infrastructure for QuadKit - fixtures, fakes, and utilities"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
keywords = [
|
|
12
|
+
"testing",
|
|
13
|
+
"pytest",
|
|
14
|
+
"fixtures",
|
|
15
|
+
"fakes",
|
|
16
|
+
"quadkit",
|
|
17
|
+
]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 3 - Alpha",
|
|
20
|
+
"Framework :: AsyncIO",
|
|
21
|
+
"Intended Audience :: Developers",
|
|
22
|
+
"License :: OSI Approved :: Apache Software License",
|
|
23
|
+
"Operating System :: OS Independent",
|
|
24
|
+
"Programming Language :: Python :: 3",
|
|
25
|
+
"Programming Language :: Python :: 3.11",
|
|
26
|
+
"Programming Language :: Python :: 3.12",
|
|
27
|
+
"Programming Language :: Python :: 3.13",
|
|
28
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
29
|
+
"Typing :: Typed",
|
|
30
|
+
]
|
|
31
|
+
dependencies = [
|
|
32
|
+
"quadkit>=0.0.1",
|
|
33
|
+
"quadkit-contracts>=0.0.1",
|
|
34
|
+
]
|
|
35
|
+
authors = [
|
|
36
|
+
{ name = "QuadKit Team", email = "team@quadkit.dev" },
|
|
37
|
+
]
|
|
38
|
+
maintainers = [
|
|
39
|
+
{ name = "QuadKit Team", email = "team@quadkit.dev" },
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[project.license]
|
|
43
|
+
text = "Apache-2.0"
|
|
44
|
+
|
|
45
|
+
[project.urls]
|
|
46
|
+
Homepage = "https://quadkit.dev"
|
|
47
|
+
Repository = "https://github.com/dbtinoy-/quadkit"
|
|
48
|
+
Documentation = "https://quadkit.dev"
|
|
49
|
+
Issues = "https://github.com/dbtinoy-/quadkit/issues"
|
|
50
|
+
|
|
51
|
+
[tool.hatch.build.targets.wheel]
|
|
52
|
+
packages = [
|
|
53
|
+
"src/quadkit_testing",
|
|
54
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""QuadKit testing utilities — placeholder for PyPI name reservation."""
|