natsio 0.1.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,8 @@
1
+ .idea/
2
+ .vscode/
3
+
4
+ __pycache__/
5
+ env/
6
+ venv/
7
+ .env/
8
+ .venv/
natsio-0.1.0/LICENSE ADDED
@@ -0,0 +1,18 @@
1
+ Copyright (c) 2024 Corrupt Mane
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this
4
+ software and associated documentation files (the "Software"), to deal in the Software
5
+ without restriction, including without limitation the rights to use, copy, modify,
6
+ merge, publish, distribute, sublicense, and/or sell copies of the Software,
7
+ and to permit persons to whom the Software is furnished to do so, subject to the
8
+ following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all copies
11
+ or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
14
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
15
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
16
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
17
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
18
+ OR OTHER DEALINGS IN THE SOFTWARE.
natsio-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.1
2
+ Name: natsio
3
+ Version: 0.1.0
4
+ Summary: NATS client for Python
5
+ Project-URL: Homepage, https://github.com/corruptmane/natsio
6
+ Project-URL: Repository, https://github.com/corruptmane/natsio
7
+ Author-email: Corrupt Mane <corruptmane@gmail.com>
8
+ Maintainer-email: Corrupt Mane <corruptmane@gmail.com>
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: asyncio,client,nats,nats-client,nats-python,nats.io
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Environment :: Console
14
+ Classifier: Framework :: AsyncIO
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Intended Audience :: Information Technology
17
+ Classifier: Intended Audience :: System Administrators
18
+ Classifier: License :: OSI Approved :: MIT License
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: Implementation :: CPython
25
+ Classifier: Typing :: Typed
26
+ Requires-Python: >=3.9
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"
@@ -0,0 +1,43 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "natsio"
7
+ description = "NATS client for Python"
8
+ requires-python = ">=3.9"
9
+ license = "MIT"
10
+ authors = [{ name = "Corrupt Mane", email = "corruptmane@gmail.com" }]
11
+ maintainers = [{ name = "Corrupt Mane", email = "corruptmane@gmail.com" }]
12
+ keywords = [
13
+ "nats",
14
+ "nats.io",
15
+ "nats-python",
16
+ "nats-client",
17
+ "asyncio",
18
+ "client",
19
+ ]
20
+ classifiers = [
21
+ "License :: OSI Approved :: MIT License",
22
+ "Development Status :: 1 - Planning",
23
+ "Environment :: Console",
24
+ "Framework :: AsyncIO",
25
+ "Intended Audience :: Developers",
26
+ "Intended Audience :: Information Technology",
27
+ "Intended Audience :: System Administrators",
28
+ "Programming Language :: Python :: 3",
29
+ "Programming Language :: Python :: 3.9",
30
+ "Programming Language :: Python :: 3.10",
31
+ "Programming Language :: Python :: 3.11",
32
+ "Programming Language :: Python :: 3.12",
33
+ "Programming Language :: Python :: Implementation :: CPython",
34
+ "Typing :: Typed",
35
+ ]
36
+ dynamic = ["version"]
37
+
38
+ [project.urls]
39
+ Homepage = "https://github.com/corruptmane/natsio"
40
+ Repository = "https://github.com/corruptmane/natsio"
41
+
42
+ [tool.hatch.version]
43
+ path = "natsio/__init__.py"