axm-audit 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.
- axm_audit-0.0.1/.gitignore +41 -0
- axm_audit-0.0.1/PKG-INFO +13 -0
- axm_audit-0.0.1/README.md +5 -0
- axm_audit-0.0.1/pyproject.toml +15 -0
- axm_audit-0.0.1/src/axm_audit/__init__.py +1 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Python-generated files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[oc]
|
|
4
|
+
build/
|
|
5
|
+
dist/
|
|
6
|
+
wheels/
|
|
7
|
+
*.egg-info
|
|
8
|
+
|
|
9
|
+
# Virtual environments
|
|
10
|
+
.venv
|
|
11
|
+
|
|
12
|
+
# Cache directories
|
|
13
|
+
.cache/
|
|
14
|
+
.pytest_cache/
|
|
15
|
+
.mypy_cache/
|
|
16
|
+
.ruff_cache/
|
|
17
|
+
.coverage
|
|
18
|
+
coverage.xml
|
|
19
|
+
htmlcov/
|
|
20
|
+
coverage_html/
|
|
21
|
+
site/
|
|
22
|
+
.projet/
|
|
23
|
+
|
|
24
|
+
# IDE
|
|
25
|
+
.idea/
|
|
26
|
+
.vscode/
|
|
27
|
+
*.swp
|
|
28
|
+
*.swo
|
|
29
|
+
|
|
30
|
+
# OS
|
|
31
|
+
.DS_Store
|
|
32
|
+
Thumbs.db
|
|
33
|
+
|
|
34
|
+
# Environment
|
|
35
|
+
.env
|
|
36
|
+
!.env.example
|
|
37
|
+
|
|
38
|
+
# Project synthesis
|
|
39
|
+
PROJECT_SYNTHESIS.md
|
|
40
|
+
|
|
41
|
+
build_reservation/
|
axm_audit-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: axm-audit
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder functionality for axm-audit - Reserved by AXM Protocols.
|
|
5
|
+
Author-email: Gabriel Jarry <gabriel@jarry.fr>
|
|
6
|
+
Requires-Python: >=3.12
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# axm-audit
|
|
11
|
+
|
|
12
|
+
This package name is reserved for the AXM Protocols project.
|
|
13
|
+
Real code coming soon.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
[project]
|
|
3
|
+
name = "axm-audit"
|
|
4
|
+
version = "0.0.1"
|
|
5
|
+
description = "Placeholder functionality for axm-audit - Reserved by AXM Protocols."
|
|
6
|
+
authors = [{ name = "Gabriel Jarry", email = "gabriel@jarry.fr" }]
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
requires-python = ">=3.12"
|
|
9
|
+
|
|
10
|
+
[build-system]
|
|
11
|
+
requires = ["hatchling"]
|
|
12
|
+
build-backend = "hatchling.build"
|
|
13
|
+
|
|
14
|
+
[tool.hatch.build.targets.wheel]
|
|
15
|
+
packages = ["src/axm_audit"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Reserved package."""
|