-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 862 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 862 Bytes
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
import setuptools
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='SCOIT',
version='0.1.2.1',
packages=setuptools.find_packages(),
url='https://github.com/deepomicslab/SCOIT',
license='MIT',
author='WANG Ruohan',
author_email='ruohawang2-c@my.cityu.edu.hk',
description='SCOIT is an implementation of a probabilistic tensor decomposition framework for single-cell multi-omics data integration.',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['numpy', 'torch==1.9.0', 'scipy==1.6.0', 'scikit-learn==0.24.2'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
python_requires='>=3.6',
)