-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
41 lines (39 loc) · 1.15 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
import setuptools
with open("README.md", "r") as fh:
readme = fh.read()
setuptools.setup(
name="TumorDecon",
version="1.1.1",
author="ShahriyariLab",
author_email="[email protected]",
description="Deconvolution Methods for Digital Cytometry",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/ShahriyariLab/TumorDecon",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
license="MIT License",
include_package_data=True,
dependency_links=["git+https://github.com/kristyhoran/singscore"],
install_requires=[
"scikit-learn>0.20.3",
"numpy>1.18.2",
"pandas>1.0.3",
"matplotlib>2.2.2",
"scipy>1.2.1",
"requests>=2.23.0",
"beautifulsoup4>4.6.0",
"multiprocess>=0.70.9",
"seaborn>0.10.0",
"wget>=3.2",
"combat>=0.2.1",
"mpmath>=1.1.0",
"patsy>=0.5.1",
"statsmodels>=0.9.0"
]
)