amstack 0.1.0__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.
amstack-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: amstack
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Dependency and toolchain setup for the Ambhora software suite
|
|
5
|
+
Project-URL: Source, https://github.com/ambhora/amstack
|
|
6
|
+
Author-email: Jayesh Badwaik <j.badwaik@fz-juelich.de>
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# amstack
|
|
11
|
+
|
|
12
|
+
Initial hello-world skeleton for the Ambhora stack tooling.
|
|
13
|
+
|
|
14
|
+
```console
|
|
15
|
+
$ amstack
|
|
16
|
+
Hello, world!
|
|
17
|
+
```
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# --------------------------------------------------------------------------------------------------
|
|
2
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
# Copyright (C) 2026 Jayesh Badwaik <j.badwaik@fz-juelich.de>
|
|
4
|
+
# --------------------------------------------------------------------------------------------------
|
|
5
|
+
|
|
6
|
+
[project]
|
|
7
|
+
name = "amstack"
|
|
8
|
+
dynamic = ["version"]
|
|
9
|
+
description = 'Dependency and toolchain setup for the Ambhora software suite'
|
|
10
|
+
readme = "readme.md"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Jayesh Badwaik", email = "j.badwaik@fz-juelich.de" },
|
|
14
|
+
]
|
|
15
|
+
dependencies = []
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Source = "https://github.com/ambhora/amstack"
|
|
19
|
+
|
|
20
|
+
[project.scripts]
|
|
21
|
+
amstack = "amstack.cli:main"
|
|
22
|
+
|
|
23
|
+
# --------------------------------------------------------------------------------------------------
|
|
24
|
+
# Hatch configuration
|
|
25
|
+
# --------------------------------------------------------------------------------------------------
|
|
26
|
+
[tool.hatch.version]
|
|
27
|
+
path = "src/amstack/metadata.py"
|
|
28
|
+
|
|
29
|
+
[build-system]
|
|
30
|
+
requires = ["hatchling"]
|
|
31
|
+
build-backend = "hatchling.build"
|
|
32
|
+
|
|
33
|
+
[tool.hatch.build.targets.wheel]
|
|
34
|
+
packages = ["src/amstack"]
|
|
35
|
+
|
|
36
|
+
[tool.hatch.build.targets.wheel.shared-data]
|
|
37
|
+
"share" = "share"
|
amstack-0.1.0/readme.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# --------------------------------------------------------------------------------------------------
|
|
2
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
# Copyright (C) 2026 Jayesh Badwaik <j.badwaik@fz-juelich.de>
|
|
4
|
+
# --------------------------------------------------------------------------------------------------
|
|
5
|
+
|
|
6
|
+
from amstack.metadata import __version__
|
|
7
|
+
|
|
8
|
+
__all__ = ["__version__"]
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# --------------------------------------------------------------------------------------------------
|
|
2
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
# Copyright (C) 2026 Jayesh Badwaik <j.badwaik@fz-juelich.de>
|
|
4
|
+
# --------------------------------------------------------------------------------------------------
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
def main() -> None:
|
|
8
|
+
print("Hello, world!")
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# --------------------------------------------------------------------------------------------------
|
|
2
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
# Copyright (C) 2026 Jayesh Badwaik <j.badwaik@fz-juelich.de>
|
|
4
|
+
# --------------------------------------------------------------------------------------------------
|
|
5
|
+
|
|
6
|
+
__version__ = "0.1.0"
|