amd-aorta 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.
- amd_aorta-0.0.1/PKG-INFO +26 -0
- amd_aorta-0.0.1/README.md +11 -0
- amd_aorta-0.0.1/amd_aorta.egg-info/PKG-INFO +26 -0
- amd_aorta-0.0.1/amd_aorta.egg-info/SOURCES.txt +6 -0
- amd_aorta-0.0.1/amd_aorta.egg-info/dependency_links.txt +1 -0
- amd_aorta-0.0.1/amd_aorta.egg-info/top_level.txt +1 -0
- amd_aorta-0.0.1/pyproject.toml +27 -0
- amd_aorta-0.0.1/setup.cfg +4 -0
amd_aorta-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: amd-aorta
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder reserving the amd-aorta name for the AMD-OSS organization. The real project lives at https://github.com/ROCm/aorta.
|
|
5
|
+
Author: AMD ROCm Team
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ROCm/aorta
|
|
8
|
+
Keywords: placeholder,name-reservation,amd,rocm,aorta
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# amd-aorta (name reservation placeholder)
|
|
17
|
+
|
|
18
|
+
This is a **placeholder** release whose only purpose is to reserve the
|
|
19
|
+
`amd-aorta` distribution name on PyPI so it can be claimed by the
|
|
20
|
+
**AMD-OSS** organization.
|
|
21
|
+
|
|
22
|
+
It contains no functional code. The real project lives at
|
|
23
|
+
**https://github.com/ROCm/aorta** and will replace this placeholder with a
|
|
24
|
+
proper release once PyPI Trusted Publishing is configured for the AMD-OSS org.
|
|
25
|
+
|
|
26
|
+
Do not depend on this version.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# amd-aorta (name reservation placeholder)
|
|
2
|
+
|
|
3
|
+
This is a **placeholder** release whose only purpose is to reserve the
|
|
4
|
+
`amd-aorta` distribution name on PyPI so it can be claimed by the
|
|
5
|
+
**AMD-OSS** organization.
|
|
6
|
+
|
|
7
|
+
It contains no functional code. The real project lives at
|
|
8
|
+
**https://github.com/ROCm/aorta** and will replace this placeholder with a
|
|
9
|
+
proper release once PyPI Trusted Publishing is configured for the AMD-OSS org.
|
|
10
|
+
|
|
11
|
+
Do not depend on this version.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: amd-aorta
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder reserving the amd-aorta name for the AMD-OSS organization. The real project lives at https://github.com/ROCm/aorta.
|
|
5
|
+
Author: AMD ROCm Team
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ROCm/aorta
|
|
8
|
+
Keywords: placeholder,name-reservation,amd,rocm,aorta
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# amd-aorta (name reservation placeholder)
|
|
17
|
+
|
|
18
|
+
This is a **placeholder** release whose only purpose is to reserve the
|
|
19
|
+
`amd-aorta` distribution name on PyPI so it can be claimed by the
|
|
20
|
+
**AMD-OSS** organization.
|
|
21
|
+
|
|
22
|
+
It contains no functional code. The real project lives at
|
|
23
|
+
**https://github.com/ROCm/aorta** and will replace this placeholder with a
|
|
24
|
+
proper release once PyPI Trusted Publishing is configured for the AMD-OSS org.
|
|
25
|
+
|
|
26
|
+
Do not depend on this version.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "amd-aorta"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Placeholder reserving the amd-aorta name for the AMD-OSS organization. The real project lives at https://github.com/ROCm/aorta."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [{name = "AMD ROCm Team"}]
|
|
13
|
+
keywords = ["placeholder", "name-reservation", "amd", "rocm", "aorta"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/ROCm/aorta"
|
|
23
|
+
|
|
24
|
+
# Metadata-only placeholder: ship no importable modules so this reservation can
|
|
25
|
+
# never shadow the real `aorta` import package once the actual release lands.
|
|
26
|
+
[tool.setuptools]
|
|
27
|
+
py-modules = []
|