-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 711 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 711 Bytes
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
from setuptools import setup
setup(
name = 'protein-bert',
version = '1.0.1',
description = 'A BERT-like deep language model for protein sequences.',
url = 'https://github.com/nadavbra/protein_bert',
author = 'Nadav Brandes',
author_email ='nadav.brandes@mail.huji.ac.il',
packages = ['proteinbert', 'proteinbert.shared_utils'],
license = 'MIT',
scripts = [
'bin/create_uniref_db',
'bin/create_uniref_h5_dataset',
'bin/pretrain_proteinbert',
'bin/set_h5_testset',
],
install_requires = [
'tensorflow',
'tensorflow_addons',
'numpy',
'pandas',
'h5py',
'lxml',
'pyfaidx',
],
)