-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hotfix: release/7.1.1 (setup.py and package_data) (#586)
* update setup * buncha inits * move req to setup * remove requirements * remove req.txt * changelog * update docs
- Loading branch information
Showing
38 changed files
with
49 additions
and
186,149 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
Binary file not shown.
Binary file not shown.
5,355 changes: 0 additions & 5,355 deletions
5,355
BALSAMIC/assets/MVL/MSK_IMPAKT_supp_S11_Cheng_2015.tsv
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
61,177 changes: 0 additions & 61,177 deletions
61,177
BALSAMIC/assets/internal_reference/hg19/ncbiRefSeq.txt
This file was deleted.
Oops, something went wrong.
61,175 changes: 0 additions & 61,175 deletions
61,175
BALSAMIC/assets/internal_reference/hg19/ncbiRefSeqPsl.txt
This file was deleted.
Oops, something went wrong.
58,365 changes: 0 additions & 58,365 deletions
58,365
BALSAMIC/assets/internal_reference/hg19/seqNcbiRefSeq.txt
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Empty file.
Empty file.
Binary file not shown.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,6 @@ | |
|
||
here = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
try: | ||
with open("requirements.txt", "r") as f: | ||
install_requires = [x.strip() for x in f.readlines()] | ||
except IOError: | ||
install_requires = [] | ||
|
||
# Load the package's __version__.py module as a dictionary. | ||
about = {} | ||
with open(os.path.join(here, "BALSAMIC", "__version__.py")) as f: | ||
|
@@ -20,11 +14,36 @@ | |
url="https://github.com/Clinical-Genomics/BALSAMIC", | ||
author="Hassan Foroughi Asl", | ||
author_email='[email protected]', | ||
install_requires=install_requires, | ||
install_requires=[ | ||
"click>=7.1.2", | ||
"colorclass>=2.2.0", | ||
"coloredlogs>=14.0", | ||
"cyvcf2<0.10.0", | ||
"graphviz>=0.14", | ||
"gsutil==4.50", | ||
"jinja2>=2.11.2", | ||
"matplotlib>=3.3.0", | ||
"networkx>=2.4", | ||
"numpy>=1.19.2", | ||
"pandas>1.1.0", | ||
"psutil>=5.7.0", | ||
"pydantic>=1.5.1", | ||
"pygments>=2.6.1", | ||
"pyyaml>=5.3.1", | ||
"six>=1.12.0", | ||
"snakemake==5.13.0", | ||
"yapf>=0.30.0", | ||
"h5py>=3.1.0", | ||
"PyPDF2>=1.26.0", | ||
"markdown==3.3.3", | ||
"cryptography<3.4", | ||
], | ||
packages=find_packages(), | ||
package_data={ | ||
"assets": ["scripts/*R", "sentieon_models/*model", "vcfanno/*.toml"], | ||
"config": ["*.json"] | ||
"": [ | ||
"*.toml", "*.json", "*.R", "*.model", "*.yaml", "*.sh", "*.rule", | ||
"*.smk", "*.awk", "*.html", "*.md" | ||
], | ||
}, | ||
include_package_data=True, | ||
zip_safe=False, | ||
|