-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
31 lines (27 loc) · 1 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
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
basedir = abspath(dirname(__file__))
with open(join(basedir, 'README.md'), encoding='utf-8') as f:
README = f.read()
setup(
name='pyMSA',
version='0.8.1',
description='Scoring Multiple Sequence Alignments with Python',
long_description=README,
long_description_content_type='text/markdown',
author='Antonio Benítez-Hidalgo, Antonio J. Nebro',
author_email='[email protected]',
maintainer='Antonio Benítez-Hidalgo',
maintainer_email='[email protected]',
license='MIT',
url='https://github.com/benhid/pyMSA',
packages=find_packages(exclude=["test.*", "tests"]),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3.6'
],
python_requires='>=3'
)