nautilus-orm 0.1.0__py3-none-any.whl
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.
nautilus/__init__.py
ADDED
|
File without changes
|
nautilus/__main__.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import importlib.resources
|
|
2
|
+
import os
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def main() -> None:
|
|
7
|
+
binary_name = "nautilus.exe" if sys.platform == "win32" else "nautilus"
|
|
8
|
+
binary = importlib.resources.files("nautilus") / binary_name
|
|
9
|
+
os.execv(str(binary), [str(binary)] + sys.argv[1:])
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
if __name__ == "__main__":
|
|
13
|
+
main()
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nautilus-orm
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Nautilus — Rust-powered ORM CLI
|
|
5
|
+
Project-URL: Repository, https://github.com/y0gm4/nautilus
|
|
6
|
+
License: MIT OR Apache-2.0
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Requires-Dist: nautilus-orm-darwin-arm64; sys_platform == 'darwin' and platform_machine == 'arm64'
|
|
9
|
+
Requires-Dist: nautilus-orm-darwin-x86-64; sys_platform == 'darwin' and platform_machine == 'x86_64'
|
|
10
|
+
Requires-Dist: nautilus-orm-linux-aarch64; sys_platform == 'linux' and platform_machine == 'aarch64'
|
|
11
|
+
Requires-Dist: nautilus-orm-linux-x86-64; sys_platform == 'linux' and platform_machine == 'x86_64'
|
|
12
|
+
Requires-Dist: nautilus-orm-win-amd64; sys_platform == 'win32'
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
nautilus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
nautilus/__main__.py,sha256=5HkktzIgAb__6Pt_KiqUl5RCTSw3cq9imLdHDCqHThs,307
|
|
3
|
+
nautilus_orm-0.1.0.dist-info/METADATA,sha256=YqMqxBcuejMMSDG39vtFGiastOBLUbXiradgqL50vY4,671
|
|
4
|
+
nautilus_orm-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
5
|
+
nautilus_orm-0.1.0.dist-info/entry_points.txt,sha256=QYggNjJBhGuO8XT_gslJkQbl04f7v8wA3OHly8hZSXk,52
|
|
6
|
+
nautilus_orm-0.1.0.dist-info/RECORD,,
|