-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a15649d
commit e0191b9
Showing
7 changed files
with
98 additions
and
37 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,46 @@ | ||
{% set name = "waltlabtools" %} | ||
{% set version = "1.0.0b25" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/waltlabtools-{{ version }}.tar.gz | ||
sha256: 6804e087f3bc6b760e009355ca9c52e2bc161457915adc47c41620882432adbc | ||
|
||
build: | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- python >=3.8 | ||
- setuptools | ||
- wheel | ||
- pip | ||
run: | ||
- python >=3.8 | ||
- numpy >=1.11 | ||
- scipy >=1.7 | ||
- pandas >=1.3 | ||
- matplotlib-base >=3.4 | ||
- scikit-learn >=1.2 | ||
|
||
test: | ||
imports: | ||
- waltlabtools | ||
commands: | ||
- pip check | ||
requires: | ||
- pip | ||
|
||
about: | ||
summary: A collection of tools for biomedical research assay analysis in Python. | ||
license: GPL-3.0 | ||
license_file: LICENSE | ||
|
||
extra: | ||
recipe-maintainers: | ||
- tylerdougan |
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 |
---|---|---|
|
@@ -39,6 +39,7 @@ all = [ | |
"bottleneck", | ||
"jinja2", | ||
"openpyxl" | ||
"xlrd" | ||
] | ||
|
||
[project.urls] | ||
|
This file was deleted.
Oops, something went wrong.
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
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,5 +1,20 @@ | ||
matplotlib>=3.3 | ||
numpy>=1.16 | ||
pandas>=0.25 | ||
scipy>=1.3 | ||
scikit-learn>=0.21 | ||
numpy>=1.11 | ||
scipy>=1.7 | ||
pandas>=1.3 | ||
matplotlib>=3.4 | ||
scikit-learn>=1.2 | ||
|
||
[all] | ||
jax | ||
numba | ||
jupyterlab | ||
numexpr | ||
bottleneck | ||
jinja2 | ||
openpyxl | ||
|
||
[jax] | ||
jax | ||
|
||
[numba] | ||
numba |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
from .model import * | ||
from .read import * | ||
|
||
__version__ = "v1.0.0b25" | ||
__version__ = "v1.0.0b26" |