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.
- midnight_sdk-0.1.0/PKG-INFO +31 -0
- midnight_sdk-0.1.0/README.md +15 -0
- midnight_sdk-0.1.0/midnight_sdk/__init__.py +0 -0
- midnight_sdk-0.1.0/midnight_sdk/cli.py +2 -0
- midnight_sdk-0.1.0/midnight_sdk.egg-info/PKG-INFO +31 -0
- midnight_sdk-0.1.0/midnight_sdk.egg-info/SOURCES.txt +9 -0
- midnight_sdk-0.1.0/midnight_sdk.egg-info/dependency_links.txt +1 -0
- midnight_sdk-0.1.0/midnight_sdk.egg-info/entry_points.txt +2 -0
- midnight_sdk-0.1.0/midnight_sdk.egg-info/top_level.txt +1 -0
- midnight_sdk-0.1.0/pyproject.toml +24 -0
- midnight_sdk-0.1.0/setup.cfg +4 -0
|
@@ -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
|
+
```
|
|
File without changes
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -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"
|