apron-conformance 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.
@@ -0,0 +1,44 @@
1
+ Metadata-Version: 2.4
2
+ Name: apron-conformance
3
+ Version: 0.0.0
4
+ Summary: Conformance suites for Apron extension points — name reserved; implementation has not started
5
+ Keywords: conformance,adapter,inference,apron
6
+ Author: Vlad Ryzhkov
7
+ License-Expression: Apache-2.0
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: Framework :: Pytest
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.14
14
+ Classifier: Topic :: Software Development :: Testing
15
+ Requires-Python: >=3.11
16
+ Project-URL: Homepage, https://apron.dev
17
+ Project-URL: Source, https://github.com/mondegreens/apron
18
+ Description-Content-Type: text/markdown
19
+
20
+ # apron-conformance
21
+
22
+ Conformance suites for [Apron](https://github.com/mondegreens/apron) extension
23
+ points.
24
+
25
+ ## Status: not implemented
26
+
27
+ This release reserves the name. There is no software here yet.
28
+
29
+ ## What it will be
30
+
31
+ Apron accepts an adapter implementation when it passes the conformance suite for
32
+ its extension point, and by no other route. This distribution exists so that the
33
+ person who must run that suite — the adapter's author, in their own repository —
34
+ can install and run it without installing the product.
35
+
36
+ One suite per extension point, executed against golden fixtures the
37
+ implementation did not write.
38
+
39
+ - Specification: <https://github.com/mondegreens/apron>
40
+ - Documentation: <https://apron.dev>
41
+
42
+ ## Licence
43
+
44
+ Apache-2.0.
@@ -0,0 +1,25 @@
1
+ # apron-conformance
2
+
3
+ Conformance suites for [Apron](https://github.com/mondegreens/apron) extension
4
+ points.
5
+
6
+ ## Status: not implemented
7
+
8
+ This release reserves the name. There is no software here yet.
9
+
10
+ ## What it will be
11
+
12
+ Apron accepts an adapter implementation when it passes the conformance suite for
13
+ its extension point, and by no other route. This distribution exists so that the
14
+ person who must run that suite — the adapter's author, in their own repository —
15
+ can install and run it without installing the product.
16
+
17
+ One suite per extension point, executed against golden fixtures the
18
+ implementation did not write.
19
+
20
+ - Specification: <https://github.com/mondegreens/apron>
21
+ - Documentation: <https://apron.dev>
22
+
23
+ ## Licence
24
+
25
+ Apache-2.0.
@@ -0,0 +1,33 @@
1
+ [project]
2
+ name = "apron-conformance"
3
+ version = "0.0.0"
4
+ description = "Conformance suites for Apron extension points — name reserved; implementation has not started"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ license = "Apache-2.0"
8
+ keywords = [
9
+ "conformance",
10
+ "adapter",
11
+ "inference",
12
+ "apron",
13
+ ]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Framework :: Pytest",
17
+ "Intended Audience :: Developers",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Programming Language :: Python :: 3.14",
21
+ "Topic :: Software Development :: Testing",
22
+ ]
23
+
24
+ [[project.authors]]
25
+ name = "Vlad Ryzhkov"
26
+
27
+ [project.urls]
28
+ Homepage = "https://apron.dev"
29
+ Source = "https://github.com/mondegreens/apron"
30
+
31
+ [build-system]
32
+ requires = ["uv_build>=0.12.13,<0.13"]
33
+ build-backend = "uv_build"
@@ -0,0 +1,26 @@
1
+ [project]
2
+ name = "apron-conformance"
3
+ version = "0.0.0"
4
+ description = "Conformance suites for Apron extension points — name reserved; implementation has not started"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ license = "Apache-2.0"
8
+ authors = [{ name = "Vlad Ryzhkov" }]
9
+ keywords = ["conformance", "adapter", "inference", "apron"]
10
+ classifiers = [
11
+ "Development Status :: 1 - Planning",
12
+ "Framework :: Pytest",
13
+ "Intended Audience :: Developers",
14
+ "Programming Language :: Python :: 3",
15
+ "Programming Language :: Python :: 3.11",
16
+ "Programming Language :: Python :: 3.14",
17
+ "Topic :: Software Development :: Testing",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://apron.dev"
22
+ Source = "https://github.com/mondegreens/apron"
23
+
24
+ [build-system]
25
+ requires = ["uv_build>=0.12.13,<0.13"]
26
+ build-backend = "uv_build"
@@ -0,0 +1,7 @@
1
+ """Conformance suites for Apron extension points.
2
+
3
+ This distribution reserves the name. The implementation has not started; see
4
+ https://github.com/mondegreens/apron for the specification.
5
+ """
6
+
7
+ __version__ = "0.0.0"