amzn-nova-forge 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.
- amzn_nova_forge-0.0.1/PKG-INFO +30 -0
- amzn_nova_forge-0.0.1/README.md +9 -0
- amzn_nova_forge-0.0.1/amzn_nova_forge.egg-info/PKG-INFO +30 -0
- amzn_nova_forge-0.0.1/amzn_nova_forge.egg-info/SOURCES.txt +6 -0
- amzn_nova_forge-0.0.1/amzn_nova_forge.egg-info/dependency_links.txt +1 -0
- amzn_nova_forge-0.0.1/amzn_nova_forge.egg-info/top_level.txt +1 -0
- amzn_nova_forge-0.0.1/setup.cfg +4 -0
- amzn_nova_forge-0.0.1/setup.py +32 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: amzn-nova-forge
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder package - name reserved for future use
|
|
5
|
+
Home-page: https://github.com/aws/amazon-nova-cusotmization-sdk
|
|
6
|
+
Author: Amazon Web Services
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Requires-Python: >=3.12
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
Dynamic: requires-python
|
|
20
|
+
Dynamic: summary
|
|
21
|
+
|
|
22
|
+
# amzn-nova-forge
|
|
23
|
+
|
|
24
|
+
**⚠️ This package name is reserved for future use.**
|
|
25
|
+
|
|
26
|
+
This is a placeholder package to reserve the `amzn-nova-forge` name on PyPI.
|
|
27
|
+
|
|
28
|
+
## About This Placeholder
|
|
29
|
+
|
|
30
|
+
This package (`amzn-nova-forge`) is currently reserved and contains no functionality. It may be used for a future release or organizational purposes.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# amzn-nova-forge
|
|
2
|
+
|
|
3
|
+
**⚠️ This package name is reserved for future use.**
|
|
4
|
+
|
|
5
|
+
This is a placeholder package to reserve the `amzn-nova-forge` name on PyPI.
|
|
6
|
+
|
|
7
|
+
## About This Placeholder
|
|
8
|
+
|
|
9
|
+
This package (`amzn-nova-forge`) is currently reserved and contains no functionality. It may be used for a future release or organizational purposes.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: amzn-nova-forge
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder package - name reserved for future use
|
|
5
|
+
Home-page: https://github.com/aws/amazon-nova-cusotmization-sdk
|
|
6
|
+
Author: Amazon Web Services
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Requires-Python: >=3.12
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
Dynamic: requires-python
|
|
20
|
+
Dynamic: summary
|
|
21
|
+
|
|
22
|
+
# amzn-nova-forge
|
|
23
|
+
|
|
24
|
+
**⚠️ This package name is reserved for future use.**
|
|
25
|
+
|
|
26
|
+
This is a placeholder package to reserve the `amzn-nova-forge` name on PyPI.
|
|
27
|
+
|
|
28
|
+
## About This Placeholder
|
|
29
|
+
|
|
30
|
+
This package (`amzn-nova-forge`) is currently reserved and contains no functionality. It may be used for a future release or organizational purposes.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
from setuptools import setup
|
|
2
|
+
import os
|
|
3
|
+
|
|
4
|
+
VERSION = "0.0.1"
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
def get_long_description():
|
|
8
|
+
with open(
|
|
9
|
+
os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"),
|
|
10
|
+
encoding="utf8",
|
|
11
|
+
) as fp:
|
|
12
|
+
return fp.read()
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
setup(
|
|
16
|
+
name="amzn-nova-forge",
|
|
17
|
+
description="Placeholder package - name reserved for future use",
|
|
18
|
+
long_description=get_long_description(),
|
|
19
|
+
long_description_content_type="text/markdown",
|
|
20
|
+
version=VERSION,
|
|
21
|
+
author="Amazon Web Services",
|
|
22
|
+
url="https://github.com/aws/amazon-nova-cusotmization-sdk",
|
|
23
|
+
python_requires=">=3.12",
|
|
24
|
+
classifiers=[
|
|
25
|
+
"Development Status :: 1 - Planning",
|
|
26
|
+
"Intended Audience :: Developers",
|
|
27
|
+
"License :: OSI Approved :: Apache Software License",
|
|
28
|
+
"Programming Language :: Python :: 3",
|
|
29
|
+
"Programming Language :: Python :: 3.12",
|
|
30
|
+
],
|
|
31
|
+
)
|
|
32
|
+
|