tigrbl-kms 0.0.1.dev1__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,18 @@
|
|
1
|
+
Metadata-Version: 2.3
|
2
|
+
Name: tigrbl-kms
|
3
|
+
Version: 0.0.1.dev1
|
4
|
+
Summary: A tigrbl package
|
5
|
+
License: Apache-2.0
|
6
|
+
Author: Jacob Stewart
|
7
|
+
Author-email: jacob@swarmauri.com
|
8
|
+
Requires-Python: >=3.10,<3.13
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
14
|
+
Classifier: Development Status :: 1 - Planning
|
15
|
+
Classifier: Development Status :: 1 - Planning
|
16
|
+
Description-Content-Type: text/markdown
|
17
|
+
|
18
|
+
|
File without changes
|
@@ -0,0 +1,35 @@
|
|
1
|
+
[project]
|
2
|
+
name = "tigrbl-kms"
|
3
|
+
version = "0.0.1.dev1"
|
4
|
+
description = "A tigrbl package"
|
5
|
+
license = "Apache-2.0"
|
6
|
+
readme = "README.md"
|
7
|
+
repository = "http://github.com/swarmauri/swarmauri-sdk"
|
8
|
+
requires-python = ">=3.10,<3.13"
|
9
|
+
classifiers = [
|
10
|
+
"License :: OSI Approved :: Apache Software License",
|
11
|
+
"Programming Language :: Python :: 3.10",
|
12
|
+
"Programming Language :: Python :: 3.11",
|
13
|
+
"Programming Language :: Python :: 3.12",
|
14
|
+
"Programming Language :: Python :: 3.13",
|
15
|
+
"Development Status :: 1 - Planning",
|
16
|
+
"Development Status :: 1 - Planning"
|
17
|
+
]
|
18
|
+
authors = [{name = "Jacob Stewart", email = "jacob@swarmauri.com"}]
|
19
|
+
|
20
|
+
[tool.pytest.ini_options]
|
21
|
+
norecursedirs = ["combined", "scripts"]
|
22
|
+
markers = ["test: standard test", "unit: Unit tests", "i9n: Integration tests", "r8n: Regression tests", "timeout: mark test to timeout after X seconds", "xpass: Expected passes", "xfail: Expected failures", "acceptance: Acceptance tests", "perf: Performance tests that measure execution time and resource usage"]
|
23
|
+
timeout = 300
|
24
|
+
log_cli = true
|
25
|
+
log_cli_level = "INFO"
|
26
|
+
log_cli_format = "%(asctime)s [%(levelname)s] %(message)s"
|
27
|
+
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
|
28
|
+
asyncio_default_fixture_loop_scope = "function"
|
29
|
+
|
30
|
+
[build-system]
|
31
|
+
requires = ["poetry-core>=1.0.0"]
|
32
|
+
build-backend = "poetry.core.masonry.api"
|
33
|
+
|
34
|
+
[dependency-groups]
|
35
|
+
dev = ["pytest>=8.0", "pytest-asyncio>=0.24.0", "pytest-xdist>=3.6.1", "pytest-json-report>=1.5.0", "python-dotenv", "requests>=2.32.3", "flake8>=7.0", "pytest-timeout>=2.3.1", "ruff>=0.9.9", "pytest-benchmark>=4.0.0"]
|
@@ -0,0 +1 @@
|
|
1
|
+
print('hello world')
|
@@ -0,0 +1,14 @@
|
|
1
|
+
from .ExampleAgent import ExampleAgent as ExampleAgent
|
2
|
+
|
3
|
+
__version__ = "0.6.0.dev26"
|
4
|
+
__long_desc__ = """
|
5
|
+
|
6
|
+
# Swarmauri Example Plugin
|
7
|
+
|
8
|
+
This repository includes an example of a Swarmauri Plugin.
|
9
|
+
|
10
|
+
Visit us at: https://swarmauri.com
|
11
|
+
Follow us at: https://github.com/swarmauri
|
12
|
+
Star us at: https://github.com/swarmauri/swarmauri-sdk
|
13
|
+
|
14
|
+
"""
|