-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathsetup.py
48 lines (44 loc) · 1.54 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
import os
from setuptools import find_packages, setup
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(CURRENT_DIR, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="nucleotide_transformer",
version="0.0.1",
packages=find_packages(),
url="https://github.com/instadeepai/nucleotide-transformer",
license="CC BY-NC-SA 4.0",
author="InstaDeep Ltd",
python_requires=">=3.9",
description="The Nucleotide Transformer: Building and Evaluating "
"Robust Foundation Models for Human Genomics ",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"absl-py>=1.0.0",
"jax>=0.3.25",
"jaxlib>=0.3.25",
"dm-haiku>=0.0.9",
"numpy>=1.23.5",
"typing_extensions>=3.10.0",
"joblib>=1.2.0",
"tqdm>=4.56.0",
"regex>=2022.1.18",
"huggingface-hub>=0.23.0",
],
dependency_links=[
"https://storage.googleapis.com/jax-releases/jax_releases.html",
],
keywords=["Genomics", "Language Model", "Deep Learning", "JAX"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)