metaxy 0.0.1a1__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,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-present Yasas Senarath <12231659+ysenarath@users.noreply.github.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: metaxy
3
+ Version: 0.0.1a1
4
+ Project-URL: Documentation, https://github.com/ysenarath/metaxy#readme
5
+ Project-URL: Issues, https://github.com/ysenarath/metaxy/issues
6
+ Project-URL: Source, https://github.com/ysenarath/metaxy
7
+ Author-email: Yasas Senarath <12231659+ysenarath@users.noreply.github.com>
8
+ License-Expression: MIT
9
+ License-File: LICENSE.txt
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: Implementation :: CPython
17
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
18
+ Requires-Python: >=3.9
19
+ Description-Content-Type: text/markdown
20
+
21
+ # metaxy
22
+
23
+ [![PyPI - Version](https://img.shields.io/pypi/v/metaxy.svg)](https://pypi.org/project/metaxy)
24
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/metaxy.svg)](https://pypi.org/project/metaxy)
25
+
26
+ -----
27
+
28
+ ## Table of Contents
29
+
30
+ - [Installation](#installation)
31
+ - [License](#license)
32
+
33
+ ## Installation
34
+
35
+ ```console
36
+ pip install metaxy
37
+ ```
38
+
39
+ ## License
40
+
41
+ `metaxy` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
@@ -0,0 +1,21 @@
1
+ # metaxy
2
+
3
+ [![PyPI - Version](https://img.shields.io/pypi/v/metaxy.svg)](https://pypi.org/project/metaxy)
4
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/metaxy.svg)](https://pypi.org/project/metaxy)
5
+
6
+ -----
7
+
8
+ ## Table of Contents
9
+
10
+ - [Installation](#installation)
11
+ - [License](#license)
12
+
13
+ ## Installation
14
+
15
+ ```console
16
+ pip install metaxy
17
+ ```
18
+
19
+ ## License
20
+
21
+ `metaxy` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
@@ -0,0 +1,52 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "metaxy"
7
+ dynamic = ["version"]
8
+ description = ''
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = "MIT"
12
+ keywords = []
13
+ authors = [
14
+ { name = "Yasas Senarath", email = "12231659+ysenarath@users.noreply.github.com" },
15
+ ]
16
+ classifiers = [
17
+ "Development Status :: 4 - Beta",
18
+ "Programming Language :: Python",
19
+ "Programming Language :: Python :: 3.9",
20
+ "Programming Language :: Python :: 3.10",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: Implementation :: CPython",
24
+ "Programming Language :: Python :: Implementation :: PyPy",
25
+ ]
26
+ dependencies = []
27
+
28
+ [project.urls]
29
+ Documentation = "https://github.com/ysenarath/metaxy#readme"
30
+ Issues = "https://github.com/ysenarath/metaxy/issues"
31
+ Source = "https://github.com/ysenarath/metaxy"
32
+
33
+ [tool.hatch.version]
34
+ path = "src/metaxy/__init__.py"
35
+
36
+ [tool.hatch.envs.types]
37
+ extra-dependencies = ["mypy>=1.0.0"]
38
+ [tool.hatch.envs.types.scripts]
39
+ check = "mypy --install-types --non-interactive {args:src/metaxy tests}"
40
+
41
+ [tool.coverage.run]
42
+ source_pkgs = ["metaxy", "tests"]
43
+ branch = true
44
+ parallel = true
45
+ omit = []
46
+
47
+ [tool.coverage.paths]
48
+ metaxy = ["src/metaxy", "*/metaxy/src/metaxy"]
49
+ tests = ["tests", "*/metaxy/tests"]
50
+
51
+ [tool.coverage.report]
52
+ exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]
@@ -0,0 +1,4 @@
1
+ # SPDX-FileCopyrightText: 2025-present Yasas Senarath <12231659+ysenarath@users.noreply.github.com>
2
+ #
3
+ # SPDX-License-Identifier: MIT
4
+ __version__ = "0.0.1a1"
@@ -0,0 +1,3 @@
1
+ # SPDX-FileCopyrightText: 2025-present Yasas Senarath <12231659+ysenarath@users.noreply.github.com>
2
+ #
3
+ # SPDX-License-Identifier: MIT
metaxy-0.0.1a1/uv.lock ADDED
@@ -0,0 +1,7 @@
1
+ version = 1
2
+ revision = 1
3
+ requires-python = ">=3.9"
4
+
5
+ [[package]]
6
+ name = "metaxy"
7
+ source = { editable = "." }