-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 938 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 938 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
with open('README.md', 'r') as f:
long_description = f.read()
from setuptools import setup, find_packages
setup(
name='OncoMark',
version='1.0.0',
url='https://github.com/SML-CompBio/OncoMark',
author='Shreyansh Priyadarshi',
author_email='shreyansh.priyadarshi02@gmail.com',
license='Apache-2.0 license',
packages=find_packages(),
package_data={'OncoMark': ['hallmark_model.keras', 'hallmark_scaler.joblib', 'hallmark_feature.txt']},
include_package_data=True,
install_requires=['pandas==2.2.3',
'numpy==2.0.2',
'tensorflow==2.18.0',
'joblib==1.4.2',
'scipy==1.14.1'
],
description='A deep learning tool designed to predict Cancer Hallmark activities from tumor biopsy samples.',
long_description=long_description,
long_description_content_type='text/markdown',
)