Skip to content

Commit

Permalink
Added license and conda recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenThornquist committed Sep 5, 2023
1 parent 6251678 commit 7482fe6
Show file tree
Hide file tree
Showing 6 changed files with 702 additions and 15 deletions.
676 changes: 676 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# SiffRoi

TODO:
- Rework `UsesReferenceFramesMixin` to make it opt-out: if
- Rework `UsesReferenceFramesMixin` to make it opt-out: if
there's no reference frames, it can use the `PHOTON_COUNTS`
layer or something similar. Maybe this is a `siff-napari`
thing to change how to pass in the data, though...
- Import different `Region` objects on demand, rather than
at initialization.

Tools for `ROI` annotation, segmentation, etc.

Expand Down
6 changes: 6 additions & 0 deletions conda-recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
python:
- 3.7
- 3.8
- 3.9
- 3.10
- 3.11
27 changes: 14 additions & 13 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,41 +3,42 @@

package:
name: {{ project.get('name') }}
version: {{ project.get('version') }}
version: {{ GIT_DESCRIBE_TAG }}

source:
path: ../
git_url: ../
#git_url: https://github.com/maimonlab/siffpy.git
git_rev : {{ GIT_DESCRIBE_TAG }}
#git_url: ../

build:
number: {{ GIT_DESCRIBE_NUMBER }}
script: "{{ PYTHON }} -m pip install '.'"
script: "{{ PYTHON }} -m pip install ."

requirements:
build:
- python >=3.9
- python
- pip
- setuptools>=45
- setuptools_scm[toml]>=6.2
- wheel
- numpy >=1.15
- setuptools>=45
- setuptools_scm>=6.2
host:
- python >=3.9
- numpy >=1.15
- python
- numpy
- scipy
- h5py
- matplotlib
run:
- python >=3.9
- numpy >=1.15
- python
- numpy
- scipy
- h5py
- matplotlib

about:
home: "https://github.com/maimonlab/siffroi"
summary : {{ project.get('description') }}
license: {{ project.get('license', {}).get('text') }}
#license_file: ../LICENSE.md
license_file: ../LICENSE.md

extra:
recipe-maintainers:
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ packages = ["siffroi"]

[project]
name = "siffroi"
dynamic = ["version"]
version = "0.0.1"
#dynamic = ["version"]
readme = "README.md"
description = "A package for annotating central complex ROIs"
license = {text="GPL-3.0-or-later"}
Expand All @@ -28,4 +29,5 @@ dependencies = [
"numpy >= 1.15",
"scipy",
"h5py",
"matplotlib"
]
Empty file added setup.cfg
Empty file.

0 comments on commit 7482fe6

Please sign in to comment.