mmar-carl 0.0.2__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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 AIRI
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: mmar-carl
3
+ Version: 0.0.2
4
+ Summary: Collaborative Agent Reasoning Library
5
+ Keywords:
6
+ Author: glazkov, shaposhnikov, tagin
7
+ Author-email: glazkov <glazkov@airi.net>, shaposhnikov <shaposhnikov@airi.net>, tagin <tagin@airi.net>
8
+ License-Expression: MIT
9
+ License-File: LICENSE
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3 :: Only
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Topic :: Documentation
19
+ Classifier: Topic :: Software Development
20
+ Classifier: Topic :: Utilities
21
+ Classifier: Typing :: Typed
22
+ Requires-Python: >=3.12
23
+ Description-Content-Type: text/markdown
24
+
25
+ # mmar-carl
26
+
27
+ ...
@@ -0,0 +1,3 @@
1
+ # mmar-carl
2
+
3
+ ...
@@ -0,0 +1,64 @@
1
+ [project]
2
+ name = "mmar-carl"
3
+ # dynamic version is not supported yet on uv_build
4
+ version = "0.0.2"
5
+ description = "Collaborative Agent Reasoning Library"
6
+ authors = [{name = "glazkov", email = "glazkov@airi.net"}, {name = "shaposhnikov", email = "shaposhnikov@airi.net"}, {name = "tagin", email = "tagin@airi.net"}]
7
+ license = "MIT"
8
+ license-files = ["LICENSE"]
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ keywords = []
12
+ classifiers = [
13
+ "Development Status :: 4 - Beta",
14
+ "Intended Audience :: Developers",
15
+ "Programming Language :: Python",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3 :: Only",
18
+ "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
20
+ "Programming Language :: Python :: 3.14",
21
+ "Topic :: Documentation",
22
+ "Topic :: Software Development",
23
+ "Topic :: Utilities",
24
+ "Typing :: Typed",
25
+ ]
26
+ dependencies = [
27
+ ]
28
+
29
+ [build-system]
30
+ requires = ["uv_build>=0.8.14,<0.9.0"]
31
+ build-backend = "uv_build"
32
+
33
+ [tool.uv.build-backend]
34
+ module-name = "mmar_carl"
35
+ source-exclude = [".ruff_cache"]
36
+
37
+ [dependency-groups]
38
+ ci = [
39
+ "ruff>=0.4",
40
+ "pytest>=8.2",
41
+ "pytest-asyncio>=1.0.0",
42
+ ]
43
+
44
+ [tool.uv]
45
+ default-groups = ["ci"]
46
+
47
+ [tool.ruff]
48
+ line-length = 120
49
+
50
+ [tool.pytest.ini_options]
51
+ asyncio_mode = "auto"
52
+
53
+ [pytest]
54
+ python_files = [ "test_*.py" ]
55
+ testpaths = [ "tests" ]
56
+
57
+ # action:message_regex:warning_class:module_regex:line
58
+ filterwarnings = [ "error" ]
59
+
60
+ [mypy]
61
+ ignore_missing_imports = true
62
+ exclude = "tests/fixtures/"
63
+ warn_unused_ignores = true
64
+ show_error_codes = true
File without changes