-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (40 loc) · 1.05 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
48
49
from setuptools import setup, find_packages
# from torch.utils.cpp_extension import BuildExtension, CUDAExtension
with open("README.md") as f:
readme = f.read()
requirements = [
'setuptools',
'tqdm',
'torch',
'einops',
'flash_attn',
'accelerate',
'pandas',
'numpy',
'polars',
'torchmetrics',
'lightning',
'scikit-learn'
]
test_requirements = [
'pytest',
'pytest-runner',
'pooch',
'fair-esm',
]
setup(
name="esm-efficient",
version='0.0.4',
description="Efficient Evolutionary Scale Modeling: Efficient and simplified implementation of protein language model for inference and training.",
keywords=['LLM', 'PLM', 'protein language model'],
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/uci-cbcl/esm-efficient",
license="MIT",
packages=find_packages(include=['esme*']),
include_package_data=True,
zip_safe=True,
install_requires=requirements,
test_suite='tests',
tests_require=test_requirements,
)