Skip to content

Commit

Permalink
add conda build
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasESBS committed Jan 14, 2022
1 parent 487abbc commit 1e53ee9
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"%PYTHON%" setup.py install
if errorlevel 1 exit 1
1 change: 1 addition & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$PYTHON setup.py install # Python command to install the script.
32 changes: 32 additions & 0 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package:
name: "scorect"
version: "0.0.1"

source:
git_rev: v0.0.1
git_url: https://github.com/LucasESBS/scoreCT

requirements:
host:
- python
- setuptools
build:
- python
run:
- python
- pandas
- numpy
- requests
- matplotlib
- seaborn

about:
home: https://github.com/LucasESBS/scoreCT
license: MIT
license_familY: MIT
license_file: LICENSE
summary: "Automated cell type annotation for scRNA-seq data in Scanpy"

extra:
recipe-maintainers:
- LucasESBS
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()


setuptools.setup(
name="scorect",
version="0.0.1",
author="Lucas Seninge",
author_email="lseninge@ucsc.edu",
description="scoreCT: Automated cell type annotation in scRNA-seq data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/LucasESBS/scoreCT",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)

0 comments on commit 1e53ee9

Please sign in to comment.