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.
@@ -0,0 +1,11 @@
1
+ /target/
2
+
3
+ # npm
4
+ npm/node_modules/
5
+
6
+ # Python
7
+ python/.venv/
8
+ python/dist/
9
+ python/build/
10
+ python/*.egg-info/
11
+ python/**/__pycache__/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: multilite
3
- Version: 0.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
- Multi-writer SQLite with end-to-end encrypted sync, built on [homebase](https://github.com/nikhilgarg28/homebase).
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)
@@ -3,4 +3,4 @@
3
3
  Not ready for use — reserves the PyPI name until Python bindings ship.
4
4
  """
5
5
 
6
- __version__ = "0.0.0"
6
+ __version__ = "0.0.1"
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "multilite"
7
- version = "0.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"]
@@ -1,5 +0,0 @@
1
- dist/
2
- build/
3
- *.egg-info/
4
- __pycache__/
5
- .venv/
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