-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
36 lines (33 loc) · 1.22 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
import sys
from setuptools import setup, find_packages
from codecs import open
from os import path
if sys.version_info < (2,7):
sys.exit("Error: You are using Python "+str(sys.version_info)+"; Python 2.6 and below are not supported. Please use 2.7 or better\n")
this_folder = path.abspath(path.dirname(__file__))
with open(path.join(this_folder,'README.md'),encoding='utf-8') as inf:
long_description = inf.read()
setup(
name='AlignQC',
version='2.0.5',
description='Python and R based tool for assessing the quality of alignments',
long_description=long_description,
url='https://github.com/jason-weirather/AlignQC',
author='Jason L Weirather',
author_email='[email protected]',
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: Apache Software License'
],
keywords='bioinformatics, sequence, alignment',
test_suite='tests',
packages=['alignqc'],
package_data={'alignqc':['data/mystyle.css','*.r']},
install_requires = ['seq-tools==1.0.10'],
entry_points = {
'console_scripts':['alignqc=alignqc.alignqc:entry_point']
}
)