-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
61 lines (54 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
59
60
61
# -*- coding: utf-8 -*-
# file: setup.py
# time: 14:54 06/04/2024
# author: YANG, HENG <[email protected]> (杨恒)
# github: https://github.com/yangheng95
# huggingface: https://huggingface.co/yangheng
# google scholar: https://scholar.google.com/citations?user=NPq5a_0AAAAJ&hl=en
# Copyright (C) 2019-2024. All Rights Reserved.
from pathlib import Path
from setuptools import setup, find_packages
from omnigenome import __name__, __version__
cwd = Path(__file__).parent
long_description = (cwd / "README.MD").read_text(encoding="utf8")
extras = {}
extras["dev"] = [
"dill",
"pytest",
]
setup(
name=__name__,
version=__version__,
description="OmniGenome: A comprehensive toolkit for genome analysis.",
long_description=long_description,
long_description_content_type="text/markdown",
url=f"https://github.com/yangheng95/{__name__}",
# Author details
author="Yang, Heng",
author_email="[email protected]",
python_requires=">=3.9",
packages=find_packages(),
include_package_data=True,
exclude_package_date={"": [".gitignore"]},
license="MIT",
install_requires=[
"findfile>=2.0.0",
"autocuda>=0.16",
"metric-visualizer>=0.9.6",
"tqdm",
"termcolor",
"gitpython", # need git installed in your OS
"torch>=1.13.1",
"sentencepiece",
"protobuf<4.0.0",
"pandas",
"viennarna",
"scikit-learn",
"accelerate",
"transformers",
],
dependency_links=[
"git+https://github.com/yangheng95/transformers@add_omnigenome#egg=transformers"
],
extras_require=extras,
)