generated from PlexSheep/baserepo
packaging for pypi
This commit is contained in:
parent
0e680d779f
commit
7b2e431bb9
|
@ -25,6 +25,11 @@ If you want to use the python variant too, you need to compile with maturing.
|
||||||
- Install in `venv`: `maturin develop --release`
|
- Install in `venv`: `maturin develop --release`
|
||||||
- Install in system: `maturin build --release && pip install target/wheels/libpt-x.x.x-*`
|
- Install in system: `maturin build --release && pip install target/wheels/libpt-x.x.x-*`
|
||||||
|
|
||||||
|
## Installing from [pypi](https://pypi.org)
|
||||||
|
`libpt` has been packaged for [pypi.org](https://pypi.org/project/libpt/).
|
||||||
|
|
||||||
|
You can install it with `pip install libpt`
|
||||||
|
|
||||||
## Installing from [crates.io](https://crates.io)
|
## Installing from [crates.io](https://crates.io)
|
||||||
`libpt` has been packaged for [crates.io](https://crates.io/crates/libpt).
|
`libpt` has been packaged for [crates.io](https://crates.io/crates/libpt).
|
||||||
|
|
||||||
|
|
|
@ -4,13 +4,20 @@ build-backend = "maturin"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "libpt"
|
name = "libpt"
|
||||||
|
readme = "README.md"
|
||||||
requires-python = ">=3.7"
|
requires-python = ">=3.7"
|
||||||
|
authors = [{ name = "Christoph J. Scherr", email = "software@cscherr.de" }]
|
||||||
|
license = { file = "LICENSE" }
|
||||||
|
keywords = ["pyo3"]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Programming Language :: Rust",
|
"Programming Language :: Rust",
|
||||||
"Programming Language :: Python :: Implementation :: CPython",
|
"Programming Language :: Python :: Implementation :: CPython",
|
||||||
"Programming Language :: Python :: Implementation :: PyPy",
|
"Programming Language :: Python :: Implementation :: PyPy",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[project.urls]
|
||||||
|
Homepage = "https://git.cscherr.de/PlexSheep/pt"
|
||||||
|
|
||||||
|
|
||||||
[tool.maturin]
|
[tool.maturin]
|
||||||
features = ["pyo3/extension-module"]
|
features = ["pyo3/extension-module"]
|
||||||
|
|
Reference in New Issue