diff --git a/README.md b/README.md index a4c3a97..c56f50f 100644 --- a/README.md +++ b/README.md @@ -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 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) `libpt` has been packaged for [crates.io](https://crates.io/crates/libpt). diff --git a/pyproject.toml b/pyproject.toml index f7063b1..177c9fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,13 +4,20 @@ build-backend = "maturin" [project] name = "libpt" +readme = "README.md" requires-python = ">=3.7" +authors = [{ name = "Christoph J. Scherr", email = "software@cscherr.de" }] +license = { file = "LICENSE" } +keywords = ["pyo3"] classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] +[project.urls] +Homepage = "https://git.cscherr.de/PlexSheep/pt" + [tool.maturin] features = ["pyo3/extension-module"]