-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
49 lines (45 loc) · 1.4 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
from setuptools import find_packages, setup
from glob import glob
classes = """
Development Status :: 5 - Production/Stable
License :: OSI Approved :: BSD License
Topic :: Software Development :: Libraries
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Operating System :: Unix
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
description = ('Deep Sequence Alignments.')
setup(name='deepblast',
version='1.0.3',
license='BSD-3-Clause',
description=description,
author_email="jamietmorton@gmail.com",
maintainer_email="jamietmorton@gmail.com",
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'pandas',
'torch>=1.4',
'scikit-learn',
'numba',
'pytorch-lightning>=0.8.1',
'matplotlib',
'pillow',
'biopython>=1.78,<2.0',
'transformers',
'sentencepiece',
'tensorboard'
],
scripts=glob('scripts/*'),
classifiers=classifiers,
)