-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (46 loc) · 1.49 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
46
47
from setuptools import find_packages, setup
setup(
name='TransfoRNA',
version='0.0.1',
description='TransfoRNA: Navigating the Uncertainties of Small RNA Annotation with an Adaptive Machine Learning Strategy',
url='https://github.com/gitHBDX/TransfoRNA',
author='YasserTaha,JuliaJehn',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Biological Researchers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(include=['transforna', 'transforna.*']),
install_requires=[
"anndata==0.8.0",
"dill==0.3.6",
"hydra-core==1.3.0",
"imbalanced-learn==0.9.1",
"matplotlib==3.5.3",
"numpy==1.22.3",
"omegaconf==2.2.2",
"pandas==1.5.2",
"plotly==5.10.0",
"PyYAML==6.0",
"rich==12.6.0",
"viennarna>=2.5.0a5",
"scanpy==1.9.1",
"scikit_learn==1.2.0",
"torch==1.10.1",
"skorch==0.12.1",
"tensorboard==2.16.2",
"Levenshtein==0.21.0",
"huggingface_hub==0.23.3",
"transformers==4.41.2",
"biopython==1.78",
],
#add dependency link for torch
dependency_links=[
"https://download.pytorch.org/whl/cu113",
],
python_requires='>=3.9',
#move yaml files to package
package_data={'': ['*.yaml']},
)