forked from rnajena/bertax
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 758 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 758 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
from setuptools import setup, find_packages
requirements = [
'tensorflow', 'numpy', 'keras', 'keras-bert'
]
setup(
name='bertax',
version=0.1,
description='DNA sequence taxonomy prediction',
long_description='',
license='MIT',
author='Fleming Kretschmer, Florian Mock, Anton Kriese',
author_email='[email protected]',
url='https://github.com/f-kretschmer/bertax',
packages=find_packages(),
package_data={'bertax': ['resources/big_trainingset_all_fix_classes_selection.h5']},
entry_points={
'console_scripts': [
'bertax=bertax.bertax:main',
'bertax-visualize=bertax.visualize:main'
]
},
install_requires=requirements,
python_requires=">=3.7"
)