Skip to content

Commit

Permalink
190 set up pyproject for easier download from pypi (#191)
Browse files Browse the repository at this point in the history
* bump version

* added pyproject for maturin publish
  • Loading branch information
noamteyssier authored Jul 11, 2023
1 parent b424426 commit f52b508
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ggetrs"
version = "0.1.72"
version = "0.1.73"
edition = "2021"
license = "MIT"
description = "Efficient querying of biological databases from the command line"
Expand Down
19 changes: 19 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[build-system]
requires = ["maturin>=1.1,<1.2"]
build-backend = "maturin"

[project]
name = "ggetrs"
description = "Biological querying and analysis"
readme = "README.md"
authors = [
{ name = "Noam Teyssier", email = "[email protected]" }
]
license = { file = "LICENSE" }
requires-python = ">=3.8"

keywords = [ "bioinformatics" ]

[project.urls]
Homepage = "https://noamteyssier.github.io/ggetrs"
Repository = "https://github.com/noamteyssier/ggetrs"

0 comments on commit f52b508

Please sign in to comment.