Skip to content

Commit

Permalink
Update pyproject.
Browse files Browse the repository at this point in the history
  • Loading branch information
morriscb committed Dec 10, 2024
1 parent e4a6696 commit 30e565b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/abc_atlas_access_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- name: Install
run: |
python -m pip install --upgrade pip
pip install .
pip install ".[test]"
- name: Test
run: pytest tests
26 changes: 17 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,15 @@ build-backend = "hatchling.build"

[project]
name = "abc_atlas_access"
version = "0.3.0"
version = "0.4.0"
description = "A package for accessing/processing data from the ABC Atlas"
dependencies = [
"anndata",
"boto3",
"ghp-import",
"matplotlib",
"moto",
"numpy",
"pandas",
"pydantic",
"pytest",
"requests",
"scipy",
"SimpleITK",
"tqdm",
"tqdm"
]
requires-python = ">=3.8"
authors = [
Expand All @@ -31,3 +24,18 @@ classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]

[project.optional-dependencies]
notebooks = [
"matplotlib",
"scipy",
"SimpleITK"
]
jupyter-book = [
"ghp-import",
"jupyter-book"
]
test = [
"moto",
"pytest"
]

0 comments on commit 30e565b

Please sign in to comment.