-
Notifications
You must be signed in to change notification settings - Fork 7
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
Showing
4 changed files
with
57 additions
and
0 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,2 @@ | ||
"%PYTHON%" setup.py install | ||
if errorlevel 1 exit 1 |
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 @@ | ||
$PYTHON setup.py install # Python command to install the script. |
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,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 |
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,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", | ||
), | ||
) |