forked from KevinMenden/scaden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 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
43
44
45
#!/usr/bin/env python3
from setuptools import setup, find_packages
version = "1.1.2"
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="kevin.menden@t-online.de",
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",
"click",
"h5py",
"rich",
],
)