archml 0.2.0__tar.gz → 0.2.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.
- {archml-0.2.0 → archml-0.2.2}/PKG-INFO +1 -1
- {archml-0.2.0 → archml-0.2.2}/pyproject.toml +8 -5
- archml-0.2.2/src/archml/static/archml-diagram.css +742 -0
- archml-0.2.2/src/archml/static/archml-viewer-template.html +135 -0
- archml-0.2.2/src/archml/static/archml-viewer.js +123 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/views/layout.py +7 -0
- archml-0.2.2/tools/hatch_build.py +49 -0
- {archml-0.2.0 → archml-0.2.2}/uv.lock +1 -1
- {archml-0.2.0 → archml-0.2.2}/vscode-extension/package.json +1 -1
- {archml-0.2.0 → archml-0.2.2}/.github/workflows/ci.yml +0 -0
- {archml-0.2.0 → archml-0.2.2}/.github/workflows/claude_instruction.yml +0 -0
- {archml-0.2.0 → archml-0.2.2}/.github/workflows/publish.yml +0 -0
- {archml-0.2.0 → archml-0.2.2}/.gitignore +0 -0
- {archml-0.2.0 → archml-0.2.2}/CLAUDE.md +0 -0
- {archml-0.2.0 → archml-0.2.2}/LICENSE +0 -0
- {archml-0.2.0 → archml-0.2.2}/README.md +0 -0
- {archml-0.2.0 → archml-0.2.2}/docs/LANGUAGE_REFERENCE.md +0 -0
- {archml-0.2.0 → archml-0.2.2}/docs/sphinx/conf.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/docs/sphinx/index.rst +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/cli/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/cli/main.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/compiler/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/compiler/artifact.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/compiler/build.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/compiler/parser.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/compiler/scanner.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/compiler/semantic_analysis.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/export/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/model/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/model/entities.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/model/types.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/sphinx_ext/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/sphinx_ext/extension.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/validation/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/validation/checks.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/views/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/views/diagram.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/views/placement.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/views/resolver.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/views/topology.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/workspace/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/workspace/config.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/workspace/git_ops.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/src/archml/workspace/lockfile.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/test.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/cli/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/cli/test_main.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/compiler/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/compiler/test_artifact.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/compiler/test_build.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/compiler/test_compiler_integration.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/compiler/test_parser.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/compiler/test_scanner.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/compiler/test_semantic_analysis.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/component_system_name_conflict.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/duplicate_component_name.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/duplicate_enum_name.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/duplicate_enum_values.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/duplicate_field_names.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/duplicate_interface.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/duplicate_type_name.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/enum_type_name_conflict.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/imports/consumer.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/imports/source.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/undefined_connection_endpoint.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/undefined_interface_ref.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/undefined_type_ref.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/negative/wrong_interface_version.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/compiler/shared/types.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/compiler/simple.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/compiler/system.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/compiler/worker.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/imports/ecommerce_system.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/imports/order_service.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/imports/types.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/interfaces.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/minimal_component.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/nested_components.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/system_with_connections.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/types_and_enums.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/data/positive/versioned_interfaces.archml +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/dot_sync/flat.dot +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/dot_sync/flat.viz.json +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/dot_sync/nested.dot +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/dot_sync/nested.viz.json +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/dot_sync/with_terminals.dot +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/dot_sync/with_terminals.viz.json +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/export/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/export/test_export.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/lsp/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/model/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/model/test_model.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/sphinx_ext/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/sphinx_ext/test_sphinx_ext.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/validation/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/validation/test_checks.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/views/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/views/test_diagram.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/views/test_dot_sync.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/views/test_resolver.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/views/test_topology.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/workspace/__init__.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/workspace/test_config.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/workspace/test_git_ops.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tests/workspace/test_lockfile.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/todo.txt +0 -0
- {archml-0.2.0 → archml-0.2.2}/tools/build_js.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tools/ci.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/tools/update_versions.py +0 -0
- {archml-0.2.0 → archml-0.2.2}/vscode-extension/.gitignore +0 -0
- {archml-0.2.0 → archml-0.2.2}/vscode-extension/.vscodeignore +0 -0
- {archml-0.2.0 → archml-0.2.2}/vscode-extension/LICENSE +0 -0
- {archml-0.2.0 → archml-0.2.2}/vscode-extension/language-configuration.json +0 -0
- {archml-0.2.0 → archml-0.2.2}/vscode-extension/package-lock.json +0 -0
- {archml-0.2.0 → archml-0.2.2}/vscode-extension/src/extension.ts +0 -0
- {archml-0.2.0 → archml-0.2.2}/vscode-extension/syntaxes/archml.tmLanguage.json +0 -0
- {archml-0.2.0 → archml-0.2.2}/vscode-extension/tsconfig.json +0 -0
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["hatchling"]
|
|
3
|
-
build-backend = "hatchling.build"
|
|
4
|
-
|
|
5
1
|
[project]
|
|
6
2
|
name = "archml"
|
|
7
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.2"
|
|
8
4
|
description = "A text-based DSL for defining software architecture alongside code"
|
|
9
5
|
readme = "README.md"
|
|
10
6
|
license = { file = "LICENSE" }
|
|
@@ -37,6 +33,13 @@ line-length = 120
|
|
|
37
33
|
[tool.ruff.lint]
|
|
38
34
|
select = ["E", "F", "I", "UP", "B", "SIM"]
|
|
39
35
|
|
|
36
|
+
[build-system]
|
|
37
|
+
requires = ["hatchling"]
|
|
38
|
+
build-backend = "hatchling.build"
|
|
39
|
+
|
|
40
|
+
[tool.hatch.build.hooks.custom]
|
|
41
|
+
path = "tools/hatch_build.py"
|
|
42
|
+
|
|
40
43
|
[tool.hatch.build.targets.wheel]
|
|
41
44
|
packages = ["src/archml"]
|
|
42
45
|
exclude = ["src/archml/export/js"]
|