Skip to content

Commit

Permalink
continued work on conda package
Browse files Browse the repository at this point in the history
  • Loading branch information
amva13 committed Mar 11, 2024
1 parent d927c4a commit a78c5d7
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 1 deletion.
1 change: 0 additions & 1 deletion .conda/bash.sh

This file was deleted.

5 changes: 5 additions & 0 deletions .conda/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
echo "Building"
echo "running pip install"
pip install -r $RECIPE_DIR/requirements_conda.txt
echo "installed all pip dependencies.. rest are conda and defined in meta.yaml"
cp -r $RECIPE_DIR/tdc $PREFIX
44 changes: 44 additions & 0 deletions .conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{% set version = "0.4.2" %}

package:
name: pytdc
version: {{ version }}

source:
path: ../tdc

build:
noarch: python
number: 0

requirements:
host:
- dataclasses=0.8
- fuzzywuzzy=0.18.0
- huggingface_hub=0.20.3
- numpy=1.26.4
- python=3.9.13
- pip=23.3.1
- pandas=2.1.4
- requests=2.31.0
- scikit-learn=1.3.0
- seaborn=0.12.2
- tqdm=4.65.0
run:
- python
- pip

test:
imports:
- imagesize

about:
home: https://github.com/shibukawa/imagesize_py
license: MIT
summary: 'Getting image size from png/jpeg/jpeg2000/gif file'
description: |
This module analyzes jpeg/jpeg2000/png/gif image header and
return image size.
dev_url: https://github.com/shibukawa/imagesize_py
doc_url: https://pypi.python.org/pypi/imagesize
doc_source_url: https://github.com/shibukawa/imagesize_py/blob/master/README.rst
10 changes: 10 additions & 0 deletions requirements_conda.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
cellxgene-census==1.10.2
gget==0.28.4
pydantic==2.6.3
gget==0.28.4
pydantic==2.6.3
gget==0.28.4
pydantic==2.6.3
rdkit==2023.9.5
tiledbsoma==1.7.2
yapf==0.40.2

0 comments on commit a78c5d7

Please sign in to comment.