midnight-sdk 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,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: midnight-sdk
3
+ Version: 0.1.0
4
+ Summary: A CLI tool for midnight operations
5
+ Author-email: Subhajeet Gorai <subhajeetgorai06@gmail.com>
6
+ Classifier: Development Status :: 3 - Alpha
7
+ Classifier: Intended Audience :: Developers
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.8
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Requires-Python: >=3.8
15
+ Description-Content-Type: text/markdown
16
+
17
+ # Midnight CLI
18
+
19
+ A CLI tool for midnight operations.
20
+
21
+ ## Installation
22
+
23
+ ```bash
24
+ pip install midnight
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ ```bash
30
+ jeet
31
+ ```
@@ -0,0 +1,15 @@
1
+ # Midnight CLI
2
+
3
+ A CLI tool for midnight operations.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install midnight
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ jeet
15
+ ```
File without changes
@@ -0,0 +1,2 @@
1
+ def main():
2
+ print("Hello from Midnight")
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: midnight-sdk
3
+ Version: 0.1.0
4
+ Summary: A CLI tool for midnight operations
5
+ Author-email: Subhajeet Gorai <subhajeetgorai06@gmail.com>
6
+ Classifier: Development Status :: 3 - Alpha
7
+ Classifier: Intended Audience :: Developers
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.8
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Requires-Python: >=3.8
15
+ Description-Content-Type: text/markdown
16
+
17
+ # Midnight CLI
18
+
19
+ A CLI tool for midnight operations.
20
+
21
+ ## Installation
22
+
23
+ ```bash
24
+ pip install midnight
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ ```bash
30
+ jeet
31
+ ```
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ midnight_sdk/__init__.py
4
+ midnight_sdk/cli.py
5
+ midnight_sdk.egg-info/PKG-INFO
6
+ midnight_sdk.egg-info/SOURCES.txt
7
+ midnight_sdk.egg-info/dependency_links.txt
8
+ midnight_sdk.egg-info/entry_points.txt
9
+ midnight_sdk.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ jeet = midnight_sdk.cli:main
@@ -0,0 +1 @@
1
+ midnight_sdk
@@ -0,0 +1,24 @@
1
+ [project]
2
+ name = "midnight-sdk"
3
+ version = "0.1.0"
4
+ description = "A CLI tool for midnight operations"
5
+ authors = [{name = "Subhajeet Gorai", email = "subhajeetgorai06@gmail.com"}]
6
+ readme = "README.md"
7
+ requires-python = ">=3.8"
8
+ classifiers = [
9
+ "Development Status :: 3 - Alpha",
10
+ "Intended Audience :: Developers",
11
+ "License :: OSI Approved :: MIT License",
12
+ "Programming Language :: Python :: 3",
13
+ "Programming Language :: Python :: 3.8",
14
+ "Programming Language :: Python :: 3.9",
15
+ "Programming Language :: Python :: 3.10",
16
+ "Programming Language :: Python :: 3.11",
17
+ ]
18
+
19
+ [project.scripts]
20
+ jeet = "midnight_sdk.cli:main"
21
+
22
+ [build-system]
23
+ requires = ["setuptools"]
24
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+