-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from abearab/master
easy installation through pip
- Loading branch information
Showing
11 changed files
with
130 additions
and
34 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,63 @@ | ||
name: Publish PyPI | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ${{ matrix.os-version }} | ||
name: ${{ matrix.os-version }} (${{ matrix.python-version }}) | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os-version: ["ubuntu-latest"] | ||
python-version: ["3.9"] # ["3.8", "3.9", "3.10"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: "Set up Python ${{ matrix.python-version }}" | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
- name: "Install flake8" | ||
run: | | ||
pip install flake8 | ||
- name: "Lint with flake8" | ||
run: | | ||
# stop the build if there are Python syntax errors or undefined names | ||
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
- name: "Install miniconda" | ||
uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
miniconda-version: "latest" | ||
auto-update-conda: true | ||
mamba-version: "*" | ||
python-version: ${{ matrix.python-version }} | ||
channels: conda-forge,bioconda | ||
environment-file: environment.yml | ||
- name: "Install pytest" | ||
shell: bash -l {0} | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel build pytest | ||
pip install twine | ||
- name: "Test with pytest" | ||
shell: bash -l {0} | ||
run: | | ||
pytest -s | ||
- name: Build package | ||
shell: bash -l {0} | ||
run: | | ||
python setup.py bdist_wheel --universal | ||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_TOKEN }} |
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 @@ | ||
version = "0.1.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from CanDI.candi import data | ||
from . import data | ||
data = data.Data() #Global object data instantiated on import required for access by GeneQuery Objects | ||
from CanDI.candi.candi import (Gene, CellLine, Organelle, Cancer, CellLineCluster, GeneCluster) | ||
from . import (Gene, CellLine, Organelle, Cancer, CellLineCluster, GeneCluster) | ||
|
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
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,7 +1,7 @@ | ||
import os | ||
import configparser | ||
import json | ||
from manager import Manager | ||
from .manager import Manager | ||
|
||
|
||
def main(): | ||
|
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,5 @@ | ||
import pandas as pd | ||
from CanDI.structures import handlers | ||
from . import handlers | ||
|
||
class Entity(object): | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
from setuptools import setup, find_packages | ||
from CanDI.__version__ import version | ||
|
||
from pathlib import Path | ||
|
||
this_directory = Path(__file__).parent | ||
|
||
setup( | ||
name='CanDI', | ||
description='A cancer data integration package', | ||
version=version, | ||
packages=find_packages(), | ||
python_requires='>=3.9', | ||
install_requires=[ | ||
"pandas", | ||
"configparser", | ||
"requests", | ||
"tqdm", | ||
], | ||
url = 'https://github.com/GilbertLabUCSF/CanDI', | ||
entry_points={ | ||
'console_scripts': [ | ||
'candi-install = CanDI.setup.install:main', | ||
], | ||
}, | ||
classifiers=[ | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
], | ||
) |