Skip to content

Commit

Permalink
update setup.py to require scipy and numpy and remove R
Browse files Browse the repository at this point in the history
  • Loading branch information
Mai To Uyen authored and Mai To Uyen committed Jan 21, 2021
1 parent c04e29e commit 25df275
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -21,10 +21,12 @@ def recursive_list_dir(path):
'author': treeshrink.PROGRAM_AUTHOR,
'url': treeshrink.PROGRAM_WEBSITE,
'license': treeshrink.PROGRAM_LICENSE,
'packages': find_packages()+['Rlib','R_scripts'],
'package_data':{'':recursive_list_dir('Rlib')+recursive_list_dir('R_scripts')},
'packages': find_packages(),#+['Rlib','R_scripts'],
#'package_data':{'':recursive_list_dir('Rlib')+recursive_list_dir('R_scripts')},
'include_package_data': True,
'zip_safe': True,
'scripts' : ['run_treeshrink.py','decompose.py','make_gene_folder.py'],
'install_requires':['scipy>=1.3.1','numpy>=1.18.5'],
'keywords': 'Phylogenetics Evolution Biology',
'long_description': """A Python implementation of the TreeShrink algorithm (Mai, Genome Biology, 2018)""",
'classifiers': ["Environment :: Console",

0 comments on commit 25df275

Please sign in to comment.