-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
50 lines (38 loc) · 959 Bytes
/
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
48
49
50
from setuptools import setup
from setuptools import find_packages
import os, glob, warnings
warnings.filterwarnings("ignore")
requirements=[
'Bio',
'biopython<=1.81',
'matplotlib<3.3,>=3.2',
'numpy<1.21',
'pandas<1.4.0',
'pysam',
'scikit_learn<1.1.0',
#'scipy<1.7.0',
'torch>=2.4.0',
'tqdm',
'transformers>=4.0.0',
'tokenizers<0.20.0',
'urllib3<1.27,>=1.25.4',
'zipp==3.13.0'
]
setup(name='methylbert',
version='2.0.1',
packages=find_packages("src"),
package_dir = {"": "src"},
install_requires = requirements,
setup_requires = requirements,
py_modules=[os.path.splitext(os.path.basename(path))[0] for path in glob.glob("src/*.py")]+ \
[os.path.splitext(os.path.basename(path))[0] for path in glob.glob("src/methylbert/*.py")],
test_suite="test",
author='Yunhee Jeong',
author_email='y.jeong@dkfz-heidelberg.de',
# cli
entry_points={
"console_scripts": [
"methylbert = cli:main"
]
}
)