-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
38 lines (36 loc) · 1.41 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
from setuptools import setup, find_packages
version_file_path = "learnMSA/_version.py"
with open(version_file_path, "rt") as version_file:
version = version_file.readlines()[0].split("=")[1].strip(' "')
setup(
name="learnMSA",
version=version,
url="https://github.com/Gaius-Augustus/learnMSA",
author="Felix Becker",
author_email="[email protected]",
description="learnMSA: Learning and Aligning large Protein Families",
packages=find_packages(
where=".",
include=["learnMSA", "learnMSA.run", "learnMSA.msa_hmm", "learnMSA.protein_language_models"]
),
install_requires=["tensorflow[and-cuda]<2.18",
"networkx",
"logomaker",
"seaborn",
"biopython>=1.69",
"pyfamsa",
"transformers",
"imageio",
"SentencePiece",
"numpy<2.0"],
include_package_data=True,
package_data={'': ["msa_hmm/trained_prior/*",
"msa_hmm/trained_prior/transition_priors/*",
"protein_language_models/new_scoring_models_frozen/*",
"protein_language_models/priors_V3/*"]},
license="MIT",
license_files = ("LICENSE.md"),
entry_points={
"console_scripts": [
"learnMSA = learnMSA.run:run_main", ] }
)