idmtools-platform-container 0.0.0.dev0__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.
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: idmtools-platform-container
3
+ Version: 0.0.0.dev0
4
+ Summary: Placeholder package for idmtools-platform-container - reserved for future use
5
+ Author-email: IDM <idmtools@idmod.org>
6
+ License: Proprietary
7
+ Project-URL: Homepage, https://github.com/InstituteforDiseaseModeling/idmtools
8
+ Project-URL: Bug Tracker, https://github.com/InstituteforDiseaseModeling/idmtools/issues
9
+ Keywords: placeholder,reserved,idmtools
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+
21
+ # idmtools-platform-container
22
+
23
+ **PLACEHOLDER PACKAGE - NOT FOR USE**
24
+
25
+ This package is a placeholder to reserve the name `idmtools-platform-container` on PyPI.
26
+
27
+ The actual package implementation will be released in the future.
28
+
29
+ ## Purpose
30
+
31
+ This placeholder ensures the package name is reserved and prevents name squatting.
32
+
33
+ ## Status
34
+
35
+ This is version 0.0.0.dev0 - a minimal placeholder release.
36
+
37
+ ## Future Release
38
+
39
+ The full implementation of idmtools-platform-container will be published when ready.
40
+
41
+ For more information, visit: https://github.com/InstituteforDiseaseModeling/idmtools
@@ -0,0 +1,21 @@
1
+ # idmtools-platform-container
2
+
3
+ **PLACEHOLDER PACKAGE - NOT FOR USE**
4
+
5
+ This package is a placeholder to reserve the name `idmtools-platform-container` on PyPI.
6
+
7
+ The actual package implementation will be released in the future.
8
+
9
+ ## Purpose
10
+
11
+ This placeholder ensures the package name is reserved and prevents name squatting.
12
+
13
+ ## Status
14
+
15
+ This is version 0.0.0.dev0 - a minimal placeholder release.
16
+
17
+ ## Future Release
18
+
19
+ The full implementation of idmtools-platform-container will be published when ready.
20
+
21
+ For more information, visit: https://github.com/InstituteforDiseaseModeling/idmtools
@@ -0,0 +1,8 @@
1
+ """
2
+ idmtools-platform-container - Placeholder Package
3
+
4
+ This is a placeholder package to reserve the name on PyPI.
5
+ The actual package will be published later.
6
+ """
7
+
8
+ __version__ = "0.0.0.dev0"
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: idmtools-platform-container
3
+ Version: 0.0.0.dev0
4
+ Summary: Placeholder package for idmtools-platform-container - reserved for future use
5
+ Author-email: IDM <idmtools@idmod.org>
6
+ License: Proprietary
7
+ Project-URL: Homepage, https://github.com/InstituteforDiseaseModeling/idmtools
8
+ Project-URL: Bug Tracker, https://github.com/InstituteforDiseaseModeling/idmtools/issues
9
+ Keywords: placeholder,reserved,idmtools
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+
21
+ # idmtools-platform-container
22
+
23
+ **PLACEHOLDER PACKAGE - NOT FOR USE**
24
+
25
+ This package is a placeholder to reserve the name `idmtools-platform-container` on PyPI.
26
+
27
+ The actual package implementation will be released in the future.
28
+
29
+ ## Purpose
30
+
31
+ This placeholder ensures the package name is reserved and prevents name squatting.
32
+
33
+ ## Status
34
+
35
+ This is version 0.0.0.dev0 - a minimal placeholder release.
36
+
37
+ ## Future Release
38
+
39
+ The full implementation of idmtools-platform-container will be published when ready.
40
+
41
+ For more information, visit: https://github.com/InstituteforDiseaseModeling/idmtools
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ idmtools_platform_container/__init__.py
4
+ idmtools_platform_container.egg-info/PKG-INFO
5
+ idmtools_platform_container.egg-info/SOURCES.txt
6
+ idmtools_platform_container.egg-info/dependency_links.txt
7
+ idmtools_platform_container.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ dist
2
+ idmtools_platform_container
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "idmtools-platform-container"
7
+ version = "0.0.0.dev0"
8
+ description = "Placeholder package for idmtools-platform-container - reserved for future use"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = { text = "Proprietary" }
12
+ authors = [
13
+ { name = "IDM", email = "idmtools@idmod.org" }
14
+ ]
15
+ keywords = ["placeholder", "reserved", "idmtools"]
16
+ classifiers = [
17
+ "Development Status :: 1 - Planning",
18
+ "Intended Audience :: Developers",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.8",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ ]
26
+
27
+ [project.urls]
28
+ Homepage = "https://github.com/InstituteforDiseaseModeling/idmtools"
29
+ "Bug Tracker" = "https://github.com/InstituteforDiseaseModeling/idmtools/issues"
30
+
31
+ [tool.setuptools]
32
+ packages = {find = {}}
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+