-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: prepared pyella package for publication
Updated package metadata. Added install instructions to readme.
- Loading branch information
Dexter Duckworth
committed
Aug 2, 2023
1 parent
6de2cc8
commit b4fe55c
Showing
3 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
# pyella | ||
# pyella-rs | ||
|
||
Python bindings for the ella datastore. | ||
|
||
## Installation | ||
|
||
You can install `pyella-rs` from PyPI using pip: | ||
|
||
```shell | ||
python -m pip install pyella-rs | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,29 @@ | ||
[project] | ||
name = "ella" | ||
name = "pyella-rs" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: MacOS", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python", | ||
"Programming Language :: Rust", | ||
"Programming Language :: Python :: 3", | ||
] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/BlackrockNeurotech/ella" | ||
Changelog = "https://github.com/BlackrockNeurotech/ella/blob/main/CHANGELOG.md" | ||
|
||
[build-system] | ||
requires = ["maturin>=0.14,<0.15"] | ||
requires = ["maturin>=1.0,<2.0"] | ||
build-backend = "maturin" | ||
|
||
[tool.maturin] | ||
features = ["pyo3/extension-module"] | ||
module-name = "ella._internal" | ||
locked = true | ||
exclude = [{ path = "examples/**", format = "sdist" }] |