max 0.0.1__py3-none-any.whl
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.
- max/__init__.py +19 -0
- max-0.0.1.dist-info/METADATA +34 -0
- max-0.0.1.dist-info/RECORD +4 -0
- max-0.0.1.dist-info/WHEEL +4 -0
max/__init__.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
ABOUT = """
|
|
2
|
+
Modular MAX (Placeholder Package)
|
|
3
|
+
-------------------
|
|
4
|
+
|
|
5
|
+
This package is a temporary placeholder for future releases of the
|
|
6
|
+
Modular MAX SDK on PyPI which is currently only available as a
|
|
7
|
+
conda package.
|
|
8
|
+
|
|
9
|
+
Learn more about MAX at: https://www.modular.com/max
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
__app_name__ = "max"
|
|
13
|
+
__version__ = "0.0.1"
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
if __name__ == "__main__":
|
|
17
|
+
print(ABOUT)
|
|
18
|
+
else:
|
|
19
|
+
raise ImportError(ABOUT)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: max
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Temporary placeholder package future releases of the Modular MAX SDK on PyPI which is currently only avalaible as a conda package.
|
|
5
|
+
Author-email: Modular Inc <hello@modular.com>
|
|
6
|
+
License: Apache 2.0
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Modular MAX
|
|
11
|
+
|
|
12
|
+
Notice: This package is temporary placeholder for future releases of the Modular
|
|
13
|
+
MAX SDK on PyPI. Today MAX is currently avalaible as a conda package.
|
|
14
|
+
|
|
15
|
+
Learn more about MAX at: <https://www.modular.com/max>
|
|
16
|
+
|
|
17
|
+
## About MAX
|
|
18
|
+
|
|
19
|
+

|
|
20
|
+
|
|
21
|
+
The Modular Accelerated Xecution ([MAX](https://www.modular.com/max)) platform
|
|
22
|
+
is an integrated suite of AI libraries, tools, and technologies that unifies
|
|
23
|
+
commonly fragmented AI deployment workflows. MAX accelerates time to market
|
|
24
|
+
for the latest innovations by giving AI developers a single toolchain that
|
|
25
|
+
unlocks full programmability, unparalleled performance, and seamless hardware portability.
|
|
26
|
+
|
|
27
|
+

|
|
28
|
+
|
|
29
|
+
[See here to get started with MAX](https://docs.modular.com/max/get-started)
|
|
30
|
+
and when you want to report issues or request features,
|
|
31
|
+
[please create a GitHub issue here](https://github.com/modularml/max/issues/new/choose).
|
|
32
|
+
|
|
33
|
+
The [Discord](https://discord.gg/modular) community is the best place to share
|
|
34
|
+
your experiences and chat with the team and other community members.
|