meetgraph 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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Tek Raj Chhetri
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: meetgraph
3
+ Version: 0.0.1
4
+ Summary: Reserved package name. Real functionality coming soon.
5
+ Project-URL: Homepage, https://github.com/tekrajchhetri/meetgraph
6
+ Author-email: Tek Raj Chhetri <tekraj@mit.edu>
7
+ License: MIT
8
+ License-File: LICENSE
9
+ Keywords: meetgraph
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Requires-Python: >=3.8
16
+ Description-Content-Type: text/markdown
17
+
18
+ # meetgraph
19
+
20
+ Reserved package name on PyPI. This is a placeholder release; real
21
+ functionality is coming soon.
22
+
23
+ ## Install
24
+
25
+ ```bash
26
+ pip install meetgraph
27
+ ```
28
+
29
+ ## Status
30
+
31
+ Planning. Stay tuned.
@@ -0,0 +1,14 @@
1
+ # meetgraph
2
+
3
+ Reserved package name on PyPI. This is a placeholder release; real
4
+ functionality is coming soon.
5
+
6
+ ## Install
7
+
8
+ ```bash
9
+ pip install meetgraph
10
+ ```
11
+
12
+ ## Status
13
+
14
+ Planning. Stay tuned.
@@ -0,0 +1,29 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "meetgraph"
7
+ version = "0.0.1"
8
+ description = "Reserved package name. Real functionality coming soon."
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = { text = "MIT" }
12
+ authors = [
13
+ { name = "Tek Raj Chhetri", email = "tekraj@mit.edu" },
14
+ ]
15
+ keywords = ["meetgraph"]
16
+ classifiers = [
17
+ "Development Status :: 1 - Planning",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Operating System :: OS Independent",
22
+ ]
23
+ dependencies = []
24
+
25
+ [project.urls]
26
+ Homepage = "https://github.com/tekrajchhetri/meetgraph"
27
+
28
+ [tool.hatch.build.targets.wheel]
29
+ packages = ["src/meetgraph"]
@@ -0,0 +1,7 @@
1
+ """meetgraph — reserved package name.
2
+
3
+ This is a placeholder release that reserves the name on PyPI.
4
+ Real functionality is coming soon.
5
+ """
6
+
7
+ __version__ = "0.0.1"