-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
41 lines (34 loc) · 852 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
#!/usr/bin/env python
"""
Setup module for ModelAngelo
"""
import os
import sys
from setuptools import setup, find_packages
sys.path.insert(0, f"{os.path.dirname(__file__)}/model_angelo")
import model_angelo
project_root = os.path.join(os.path.realpath(os.path.dirname(__file__)), "model_angelo")
setup(
name="model_angelo",
entry_points={
"console_scripts": [
"model_angelo = model_angelo.__main__:main",
],
},
package_data={'': ['utils/stereo_chemical_props.txt']},
packages=find_packages(),
version=model_angelo.__version__,
install_requires=[
"tqdm",
"scipy",
"biopython>=1.81",
"einops",
"matplotlib",
"mrcfile",
"pandas",
"fair-esm==1.0.3",
"pyhmmer==0.7.1",
"loguru",
"numpy>=1.24.4",
],
)