-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
35 lines (29 loc) · 943 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
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup
with open("fm/version.py") as infile:
exec(infile.read())
with open("README.md") as f:
readme = f.read()
setup(
name="rna-fm",
version=version,
description="RNA Foundation Model (rna-fm): Pretrained language models for RNAs. From CUHK AIH Lab.",
long_description=readme,
long_description_content_type="text/markdown",
author="CUHK AIH Lab",
url="https://github.com/ml4bio/RNA-FM",
license="MIT",
packages=["fm", "fm/model", "fm/downstream", "fm/downstream/pairwise_predictor"],
data_files=[("source_docs/fm", ["LICENSE", "README.md"])],
zip_safe=True,
install_requires = [
'numpy',
'pandas',
'tqdm',
'scikit-learn',
'ptflops',
],
)