-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 925 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 925 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
26
with open('README.md', 'r') as f:
long_description = f.read()
from setuptools import setup, find_packages
setup(
name='ACSCeND',
version='1.1',
url='https://github.com/SML-CompBio/ACSCEND',
author='Shreyansh Priyadarshi',
author_email='shreyansh.priyadarshi02@gmail.com',
license='BSD 2-clause',
packages=find_packages(),
package_data={'ACSCeND': ['lr_model.joblib', 'lr_scaler.joblib']},
include_package_data=True,
install_requires=['pandas==2.3.1',
'numpy==2.3.1',
'torch==2.7.1',
'scikit-learn==1.7.0',
'joblib==1.5.1',
'scipy==1.16.0'
],
description='A deep learning tool for bulk RNA-seq deconvolution and Stem Cells Sub-Class prediction.',
long_description=long_description,
long_description_content_type='text/markdown',
)