multilite 0.0.0__tar.gz → 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.
- multilite-0.0.1/.gitignore +11 -0
- {multilite-0.0.0 → multilite-0.0.1}/PKG-INFO +3 -6
- multilite-0.0.1/README.md +6 -0
- {multilite-0.0.0 → multilite-0.0.1}/multilite/__init__.py +1 -1
- {multilite-0.0.0 → multilite-0.0.1}/pyproject.toml +4 -1
- multilite-0.0.0/.gitignore +0 -5
- multilite-0.0.0/README.md +0 -9
- {multilite-0.0.0 → multilite-0.0.1}/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: multilite
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.1
|
|
4
4
|
Summary: Multi-writer SQLite with E2EE sync, built on homebase — not ready for use
|
|
5
5
|
Project-URL: Homepage, https://github.com/nikhilgarg28/multilite
|
|
6
6
|
Project-URL: Repository, https://github.com/nikhilgarg28/multilite
|
|
@@ -11,12 +11,9 @@ License-File: LICENSE
|
|
|
11
11
|
Requires-Python: >=3.8
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
|
|
14
|
-
# multilite
|
|
14
|
+
# multilite (Python)
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
**Not ready for use.** This package reserves the `multilite` name on PyPI until Python bindings ship. API unstable.
|
|
16
|
+
Python bindings for [multilite](https://github.com/nikhilgarg28/multilite) — not ready for use.
|
|
19
17
|
|
|
20
18
|
- Rust: [crates.io/crates/multilite](https://crates.io/crates/multilite)
|
|
21
19
|
- npm: [npmjs.com/package/multilite](https://www.npmjs.com/package/multilite)
|
|
22
|
-
- Launch gates: [LAUNCH_CHECKLIST.md](https://github.com/nikhilgarg28/homebase/blob/main/LAUNCH_CHECKLIST.md)
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# multilite (Python)
|
|
2
|
+
|
|
3
|
+
Python bindings for [multilite](https://github.com/nikhilgarg28/multilite) — not ready for use.
|
|
4
|
+
|
|
5
|
+
- Rust: [crates.io/crates/multilite](https://crates.io/crates/multilite)
|
|
6
|
+
- npm: [npmjs.com/package/multilite](https://www.npmjs.com/package/multilite)
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "multilite"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.1"
|
|
8
8
|
description = "Multi-writer SQLite with E2EE sync, built on homebase — not ready for use"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
@@ -18,3 +18,6 @@ Repository = "https://github.com/nikhilgarg28/multilite"
|
|
|
18
18
|
|
|
19
19
|
[tool.hatch.build.targets.wheel]
|
|
20
20
|
packages = ["multilite"]
|
|
21
|
+
|
|
22
|
+
[tool.hatch.build.targets.sdist]
|
|
23
|
+
include = ["multilite/", "README.md", "LICENSE"]
|
multilite-0.0.0/.gitignore
DELETED
multilite-0.0.0/README.md
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# multilite
|
|
2
|
-
|
|
3
|
-
Multi-writer SQLite with end-to-end encrypted sync, built on [homebase](https://github.com/nikhilgarg28/homebase).
|
|
4
|
-
|
|
5
|
-
**Not ready for use.** This package reserves the `multilite` name on PyPI until Python bindings ship. API unstable.
|
|
6
|
-
|
|
7
|
-
- Rust: [crates.io/crates/multilite](https://crates.io/crates/multilite)
|
|
8
|
-
- npm: [npmjs.com/package/multilite](https://www.npmjs.com/package/multilite)
|
|
9
|
-
- Launch gates: [LAUNCH_CHECKLIST.md](https://github.com/nikhilgarg28/homebase/blob/main/LAUNCH_CHECKLIST.md)
|
|
File without changes
|