forked from budach/pysster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 697 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 697 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 = 'pysster',
version = '1.1.5',
description = 'a Sequence/STructure classifiER for biological sequences',
url = 'https://github.com/budach/pysster',
author = 'Stefan Budach',
author_email = 'budach@molgen.mpg.de',
license = 'MIT',
install_requires = [
'numpy>=1.14.0',
'matplotlib',
'seaborn',
'scikit-learn',
'keras>=2.1.3',
'tensorflow!=1.8',
'h5py',
'logging_exceptions',
'Pillow',
'forgi'
],
packages = ['pysster'],
python_requires = '>=3.5',
include_package_data = True,
zip_safe = False
)