-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (31 loc) · 1022 Bytes
/
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
from setuptools import find_packages
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='Sequoya',
version='0.9.1',
description='Solving Multiple Sequence Alignments with Python',
author='Antonio Benítez-Hidalgo',
author_email='antonio.b@uma.es',
maintainer='Antonio Benítez-Hidalgo',
maintainer_email='antonio.b@uma.es',
python_requires='>=3',
license='MIT',
url='https://github.com/benhid/Sequoya',
long_description=open('README.md').read(),
packages=find_packages(exclude=["test.*", "tests"]),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3.6'
],
install_requires=[
'jmetalpy==1.5.4',
'pyMSA==0.5.1',
'bokeh==1.1.0' # optional for Dask web interface
]
)