aiohttp-mcp 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,64 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual environments
24
+ .env
25
+ .venv
26
+ env/
27
+ venv/
28
+ ENV/
29
+
30
+ # IDE
31
+ .idea/
32
+ .vscode/
33
+ *.swp
34
+ *.swo
35
+ .DS_Store
36
+
37
+ # Testing
38
+ .tox/
39
+ .coverage
40
+ .coverage.*
41
+ .cache
42
+ nosetests.xml
43
+ coverage.xml
44
+ *.cover
45
+ .hypothesis/
46
+ .pytest_cache/
47
+ htmlcov/
48
+
49
+ # mypy
50
+ .mypy_cache/
51
+ .dmypy.json
52
+ dmypy.json
53
+
54
+ # Ruff
55
+ .ruff_cache/
56
+
57
+ # Distribution / packaging
58
+ .Python
59
+ *.pyc
60
+ *.pyo
61
+ *.pyd
62
+ .Python
63
+ *.py[cod]
64
+ *$py.class
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Taras Drapalyuk
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: aiohttp-mcp
3
+ Version: 0.0.1
4
+ Summary: Tools for building Model Context Protocol (MCP) servers on top of aiohttp
5
+ Project-URL: Homepage, https://github.com/kulapard/aiohttp-mcp
6
+ Project-URL: Repository, https://github.com/kulapard/aiohttp-mcp.git
7
+ Project-URL: Documentation, https://github.com/kulapard/aiohttp-mcp#readme
8
+ Author-email: Taras Drapalyuk <taras@drapalyuk.com>
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: ai,aiohttp,async,llm,mcp,model-context-protocol,server
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
23
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
24
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
25
+ Requires-Python: >=3.8
26
+ Requires-Dist: aiohttp>=3.9.0
27
+ Description-Content-Type: text/markdown
28
+
29
+ # aiohttp-mcp
30
+
31
+ Tools for building Model Context Protocol (MCP) servers on top of aiohttp.
@@ -0,0 +1,3 @@
1
+ # aiohttp-mcp
2
+
3
+ Tools for building Model Context Protocol (MCP) servers on top of aiohttp.
@@ -0,0 +1,59 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "aiohttp-mcp"
7
+ version = "0.0.1"
8
+ description = "Tools for building Model Context Protocol (MCP) servers on top of aiohttp"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "MIT"
12
+ authors = [
13
+ { name = "Taras Drapalyuk", email = "taras@drapalyuk.com" }
14
+ ]
15
+ dependencies = [
16
+ "aiohttp>=3.9.0",
17
+ ]
18
+ keywords = [
19
+ "mcp",
20
+ "model-context-protocol",
21
+ "aiohttp",
22
+ "ai",
23
+ "llm",
24
+ "server",
25
+ "async",
26
+ ]
27
+ classifiers = [
28
+ "Development Status :: 3 - Alpha",
29
+ "Intended Audience :: Developers",
30
+ "License :: OSI Approved :: MIT License",
31
+ "Programming Language :: Python :: 3",
32
+ "Programming Language :: Python :: 3.8",
33
+ "Programming Language :: Python :: 3.9",
34
+ "Programming Language :: Python :: 3.10",
35
+ "Programming Language :: Python :: 3.11",
36
+ "Programming Language :: Python :: 3.12",
37
+ "Programming Language :: Python :: 3.13",
38
+ "Topic :: Software Development :: Libraries :: Python Modules",
39
+ "Topic :: Internet :: WWW/HTTP :: HTTP Servers",
40
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
41
+ ]
42
+
43
+ [project.urls]
44
+ Homepage = "https://github.com/kulapard/aiohttp-mcp"
45
+ Repository = "https://github.com/kulapard/aiohttp-mcp.git"
46
+ Documentation = "https://github.com/kulapard/aiohttp-mcp#readme"
47
+
48
+ [tool.hatch.build.targets.wheel]
49
+ packages = ["aiohttp_mcp"]
50
+
51
+ [tool.hatch.build.targets.sdist]
52
+ include = [
53
+ "aiohttp_mcp/**/*.py",
54
+ "README.md",
55
+ "LICENSE",
56
+ ]
57
+
58
+ [tool.hatch.build]
59
+ only-packages = true