-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated py module requirements info for installer (#36)
* updated py module requirements info for installer * needs random2 lib as well
- Loading branch information
1 parent
47efdff
commit d296e11
Showing
3 changed files
with
24 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
numpy | ||
matplotlib | ||
pandas | ||
matplotlib==3.1.3 | ||
pandas==1.0.0 | ||
scipy | ||
sklearn | ||
random | ||
random2 | ||
argparse |
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,38 +1,35 @@ | ||
import os | ||
import re | ||
from setuptools import setup, find_packages | ||
|
||
with open("deTiN/__about__.py") as reader: | ||
__version__ = re.search( | ||
r'__version__ ?= ?[\'\"]([\w.]+)[\'\"]', | ||
reader.read() | ||
r"__version__ ?= ?[\'\"]([\w.]+)[\'\"]", reader.read() | ||
).group(1) | ||
|
||
|
||
# Setup information | ||
setup( | ||
name = 'deTiN', | ||
version = __version__, | ||
packages = find_packages(), | ||
description = 'Somatic analysis toolkit for dealing with tumor in normal contamination', | ||
author = 'Broad Institute - Cancer Genome Computational Analysis', | ||
author_email = 'amaro@broadinstitute.org', | ||
long_description = 'see publication', | ||
entry_points = { | ||
'console_scripts': [ | ||
'deTiN = deTiN.deTiN:main' | ||
] | ||
}, | ||
install_requires = [ | ||
'numpy', | ||
'matplotlib', | ||
'pandas', | ||
'scipy', | ||
'sklearn', | ||
'argparse' | ||
name="deTiN", | ||
version=__version__, | ||
packages=find_packages(), | ||
description="Somatic analysis toolkit for dealing with tumor in normal contamination", | ||
author="Broad Institute - Cancer Genome Computational Analysis", | ||
author_email="amaro@broadinstitute.org", | ||
long_description="see publication", | ||
entry_points={"console_scripts": ["deTiN = deTiN.deTiN:main"]}, | ||
install_requires=[ | ||
"numpy", | ||
"matplotlib==3.1.3", | ||
"pandas==1.0.0", | ||
"scipy", | ||
"sklearn", | ||
"argparse", | ||
"random2", | ||
], | ||
classifiers = [ | ||
classifiers=[ | ||
"Programming Language :: Python :: 2", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics" | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
], | ||
) |