openswmm.mcp 0.0.0__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 HydroCouple
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,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: openswmm.mcp
3
+ Version: 0.0.0
4
+ Summary: This name has been reserved using Reserver
5
+ Home-page: https://url.com
6
+ Download-URL: https://download_url.com
7
+ Author: Development Team
8
+ Author-email: test@test.com
9
+ License: MIT
10
+ Project-URL: Source, https://github.com/source
11
+ Keywords: python3 python reserve reserver reserved
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Programming Language :: Python :: 3.6
14
+ Classifier: Programming Language :: Python :: 3.7
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Requires-Python: >=3.6
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: download-url
29
+ Dynamic: home-page
30
+ Dynamic: keywords
31
+ Dynamic: license
32
+ Dynamic: license-file
33
+ Dynamic: project-url
34
+ Dynamic: requires-python
35
+ Dynamic: summary
36
+
37
+
38
+ ## Overview
39
+ openswmm.mcp is a Python library for doing awesome things.
40
+ This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
@@ -0,0 +1,4 @@
1
+
2
+ ## Overview
3
+ openswmm.mcp is a Python library for doing awesome things.
4
+ This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
@@ -0,0 +1,2 @@
1
+ # -*- coding: utf-8 -*-
2
+ """openswmm.mcp modules."""
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: openswmm.mcp
3
+ Version: 0.0.0
4
+ Summary: This name has been reserved using Reserver
5
+ Home-page: https://url.com
6
+ Download-URL: https://download_url.com
7
+ Author: Development Team
8
+ Author-email: test@test.com
9
+ License: MIT
10
+ Project-URL: Source, https://github.com/source
11
+ Keywords: python3 python reserve reserver reserved
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Programming Language :: Python :: 3.6
14
+ Classifier: Programming Language :: Python :: 3.7
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Requires-Python: >=3.6
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: download-url
29
+ Dynamic: home-page
30
+ Dynamic: keywords
31
+ Dynamic: license
32
+ Dynamic: license-file
33
+ Dynamic: project-url
34
+ Dynamic: requires-python
35
+ Dynamic: summary
36
+
37
+
38
+ ## Overview
39
+ openswmm.mcp is a Python library for doing awesome things.
40
+ This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ __init__.py
4
+ pyproject.toml
5
+ setup.py
6
+ openswmm.mcp.egg-info/PKG-INFO
7
+ openswmm.mcp.egg-info/SOURCES.txt
8
+ openswmm.mcp.egg-info/dependency_links.txt
9
+ openswmm.mcp.egg-info/top_level.txt
File without changes
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,47 @@
1
+
2
+ import sys
3
+
4
+ try:
5
+ from setuptools import setup
6
+ except ImportError:
7
+ from distutils.core import setup
8
+
9
+ # invalid email
10
+ # download url
11
+ # url
12
+ # project urls
13
+
14
+ setup(
15
+ name ="openswmm.mcp",
16
+ packages=[".",],
17
+ version='0.0.0',
18
+ description="This name has been reserved using Reserver",
19
+ long_description="""
20
+ ## Overview
21
+ openswmm.mcp is a Python library for doing awesome things.
22
+ This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
23
+ """,
24
+ long_description_content_type='text/markdown',
25
+ author="Development Team",
26
+ author_email="test@test.com",
27
+ url="https://url.com",
28
+ download_url="https://download_url.com",
29
+ keywords="python3 python reserve reserver reserved",
30
+ project_urls={
31
+ 'Source':"https://github.com/source",
32
+ },
33
+ install_requires="",
34
+ python_requires='>=3.6',
35
+ classifiers=[
36
+ 'Development Status :: 1 - Planning',
37
+ 'Programming Language :: Python :: 3.6',
38
+ 'Programming Language :: Python :: 3.7',
39
+ 'Programming Language :: Python :: 3.8',
40
+ 'Programming Language :: Python :: 3.9',
41
+ 'Programming Language :: Python :: 3.10',
42
+ 'Programming Language :: Python :: 3.11',
43
+ 'Programming Language :: Python :: 3.12',
44
+ ],
45
+ license="MIT",
46
+ )
47
+