-
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.
Adopt poetry for package management and building, deprecating the setup files as well as the requirements.txt. Create first PyPi release. Update readme accordingly.
- Loading branch information
1 parent
92016da
commit 7cfab09
Showing
6 changed files
with
30 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
poetry.lock | ||
Results | ||
dist | ||
*__pycache__ |
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,6 +1,24 @@ | ||
[tool.poetry] | ||
name = "pebba" | ||
version = "0.1.1" | ||
description = "A tool for ORA meta-analysis" | ||
authors = ["Alan Barzilay"] | ||
license = "GPL-3.0-or-later" | ||
readme = "README.md" | ||
homepage = "https://pebba.sysbio.tools/" | ||
repository = "https://github.com/csbl-br/pebba" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<3.11" | ||
scipy = "^1.8.1" | ||
plotly = "^5.9.0" | ||
numpy = "^1.23.1" | ||
statsmodels = "^0.13.2" | ||
pandas = "^1.4.3" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pytest = "^7.1.2" | ||
|
||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |
This file was deleted.
Oops, something went wrong.