forked from etal/biocma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 846 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
#!/usr/bin/env python
"""I/O and utilities for the Consensus Multiple Alignment (CMA) file format."""
from glob import glob
from os.path import join
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='biocma',
version='0.2.1',
description=__doc__,
author='Eric Talevich',
author_email='[email protected]',
url='http://github.com/etal/biocma',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
packages=['biocma'],
#scripts=glob(join('scripts', '*')),
)