forked from marouf-git/scaden
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (36 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python3
from setuptools import setup, find_packages
version = '0.9.4'
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
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",
scripts=['scripts/scaden'],
packages=find_packages(),
include_package_data=True,
python_requires='>3.6.0',
install_requires = [
'pandas',
'numpy',
'scikit-learn',
'scipy',
'tensorflow>=2.0',
'anndata',
'tqdm',
'click'
],
extras_require = {
'scanpy': ["scanpy", "matplotlib", "seaborn"]
}
)