-
Notifications
You must be signed in to change notification settings - Fork 26
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 #67 from KevinMenden/dataset-parsing-fix
made dataset identification more robust
- Loading branch information
Showing
5 changed files
with
74 additions
and
68 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
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 |
---|---|---|
|
@@ -2,32 +2,43 @@ | |
|
||
from setuptools import setup, find_packages | ||
|
||
version = '1.0.0' | ||
version = "1.0.1" | ||
|
||
with open("README.md", "r", encoding="UTF-8") as fh: | ||
long_description = fh.read() | ||
|
||
with open('LICENSE', encoding="UTF-8") as f: | ||
with open("LICENSE", encoding="UTF-8") as f: | ||
license = f.read() | ||
|
||
setup(name='scaden', | ||
version=version, | ||
description="Cell type deconvolution using single cell data", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
keywords=[ | ||
'bioinformatics', 'deep learning', 'machine learning', | ||
'single cell sequencing', 'deconvolution' | ||
], | ||
author='Kevin Menden', | ||
author_email='[email protected]', | ||
url='https://github.com/KevinMenden/scaden', | ||
license="MIT License", | ||
entry_points={"console_scripts": ["scaden=scaden.__main__:main"]}, | ||
packages=find_packages(), | ||
include_package_data=True, | ||
python_requires='>3.6.0', | ||
install_requires=[ | ||
'pandas', 'numpy', 'scikit-learn', 'tensorflow>=2.0', 'anndata', | ||
'tqdm', 'click', 'h5py~=2.10.0' | ||
]) | ||
setup( | ||
name="scaden", | ||
version=version, | ||
description="Cell type deconvolution using single cell data", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
keywords=[ | ||
"bioinformatics", | ||
"deep learning", | ||
"machine learning", | ||
"single cell sequencing", | ||
"deconvolution", | ||
], | ||
author="Kevin Menden", | ||
author_email="[email protected]", | ||
url="https://github.com/KevinMenden/scaden", | ||
license="MIT License", | ||
entry_points={"console_scripts": ["scaden=scaden.__main__:main"]}, | ||
packages=find_packages(), | ||
include_package_data=True, | ||
python_requires=">3.6.0", | ||
install_requires=[ | ||
"pandas", | ||
"numpy", | ||
"scikit-learn", | ||
"tensorflow>=2.0", | ||
"anndata", | ||
"tqdm", | ||
"click", | ||
"h5py~=2.10.0", | ||
], | ||
) |