Skip to content

Commit

Permalink
Adjust pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
breimanntools committed Apr 9, 2024
1 parent e169de7 commit 57f3520
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "aaanalysis"
version = "0.1.3"
version = "0.1.4"
description = "Python framework for interpretable protein prediction"
authors = ["Stephan Breimann <stephanbreimann@gmail.de>"]
license = "MIT"
Expand Down Expand Up @@ -33,9 +33,8 @@ classifiers = [
# 7 - Inactive (project no longer maintained)
]

# Core dependencies
# Install via pip install aaanalysis
[tool.poetry.dependencies]
# Core dependencies (via pip install aaanalysis)
python = "^3.9"
cycler = "^0.11.0"
et-xmlfile = "^1.1.0"
Expand All @@ -60,17 +59,15 @@ seaborn = "^0.11.2"
six = "^1.16.0"
statsmodels = "^0.13.2"
threadpoolctl = "^3.1.0"
# Optional professional dependencies (via pip install aaanalysis[pro])
shap = { version = "^0.44.0", optional = true }
ipython = { version = "^8.16.1", optional = true }
hypothesis = { version = "^6.86.2", optional = true }
pytest = { version = "^7.4.2", optional = true }
UpSetPlot = { version = "^0.8.0", optional = true }

# Additional depdencies (professional)
# Install via pip install aaanalysis[pro]
[tool.poetry.extras]
pro = [
"shap>=0.44.0",
"ipython>=8.16.1",
"hypothesis>=6.86.2",
"pytest>=7.4.2",
"UpSetPlot>=0.8.0"
]
pro = ["shap", "ipython", "hypothesis", "pytest", "UpSetPlot"]

# Project URLs
[tool.poetry.urls]
Expand Down

0 comments on commit 57f3520

Please sign in to comment.