docs: real repo url + pip install command
point install at git.rethinkstudios.io; show both the requirements.txt line and the direct pip install command. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: disqualifier <dev@disqualifier.me>
This commit is contained in:
parent
3922295f2c
commit
b03642d6ad
11
README.md
11
README.md
@ -5,9 +5,16 @@ helpers for the common paths, with a raw escape hatch for everything else.
|
|||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
|
`requirements.txt`:
|
||||||
|
|
||||||
|
```
|
||||||
|
mongo @ git+https://git.rethinkstudios.io/rethink-public/mongo@v0.1.0
|
||||||
|
```
|
||||||
|
|
||||||
|
Direct:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# requirements.txt
|
pip install "mongo @ git+https://git.rethinkstudios.io/rethink-public/mongo@v0.1.0"
|
||||||
mongo @ git+ssh://git@github.com/<org>/mongo.git@v0.1.0
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Requires `motor` and `pymongo` (pulled transitively).
|
Requires `motor` and `pymongo` (pulled transitively).
|
||||||
|
|||||||
@ -1,17 +1,16 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = ["setuptools>=61.0"]
|
requires = ["hatchling"]
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "mongo"
|
name = "mongo"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = "async mongodb wrapper over motor with a raw escape hatch"
|
description = "async mongodb wrapper over motor with a raw escape hatch"
|
||||||
readme = "README.md"
|
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"motor>=3.0",
|
"motor>=3.0",
|
||||||
"pymongo>=4.0",
|
"pymongo>=4.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.setuptools.packages.find]
|
[tool.hatch.build.targets.wheel]
|
||||||
where = ["src"]
|
packages = ["src/mongo"]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user