-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
limit biopython to 1.73 fix overwriting of structures in backup temp file
- Loading branch information
1 parent
6a0cf9c
commit 2846e3a
Showing
4 changed files
with
76 additions
and
25 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
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,46 +1,40 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import setup | ||
|
||
# package_data | ||
# - directly related to code | ||
# - 3rd_party_data as data_files not working to expectations | ||
|
||
with open('VERSION', 'r') as o: | ||
with open('rna_blast_analyze/VERSION', 'r') as o: | ||
version = o.read().strip() | ||
|
||
package_data = { | ||
'rna_blast_analyze': [ | ||
'rboAnalyzer': [ | ||
'BR_core/config.txt', | ||
'BR_core/prediction_parameters.json', | ||
'BR_core/output/*.html', | ||
'BR_core/output/style.css', | ||
'BR_core/output/*', | ||
'3rd_party_source/RSEARCH_matrices/*', | ||
'docs/*' | ||
'docs/*', | ||
'VERSION' | ||
] | ||
} | ||
|
||
setup( | ||
name='rna_blast_analyze', | ||
name='rboAnalyzer', | ||
version=version, | ||
description='Analyze BLAST output for RNA query', | ||
author='Marek Schwarz', | ||
author_email='[email protected]', | ||
entry_points={ | ||
'console_scripts': [ | ||
'rna_blast_analyze = rna_blast_analyze.BA:main', | ||
'rboAnalyzer = rna_blast_analyze.BA:main', | ||
'genomes_from_blast = rna_blast_analyze.download_blast_genomes:main' | ||
], | ||
}, | ||
install_requires=[ | ||
'matplotlib', | ||
'dill', | ||
'numpy', | ||
'numpy>=1.14', | ||
'Jinja2>=2, <3', | ||
'pandas>=0.22', | ||
'PyPDF2', | ||
'biopython', | ||
'biopython>=1.72, <1.74', | ||
'argcomplete', | ||
], | ||
packages=find_packages(), | ||
packages=['rna_blast_analyze', 'rna_blast_analyze.BR_core', 'rna_blast_analyze.BR_core.output'], | ||
package_data=package_data, | ||
include_package_data=True, | ||
) |
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