-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.64 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
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
from codecs import open
from os import path
import sys
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='seq-tools',
version='1.0.10',
description='Python tools for working with biological sequence data',
long_description=long_description,
url='https://github.com/jason-weirather/py-seq-tools',
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',
packages=['seqtools',
'seqtools.cli',
'seqtools.cli.legacy',
'seqtools.cli.utilities',
'seqtools.format',
'seqtools.format.fasta',
'seqtools.format.sam',
'seqtools.format.sam.bam',
'seqtools.graph',
'seqtools.sequence',
'seqtools.range',
'seqtools.simulation',
'seqtools.statistics',
'seqtools.structure',
'seqtools.structure.transcript',
'seqtools.structure.transcriptome'
],
entry_points = {
'console_scripts':['seq-tools=seqtools.cli.cli_front:main']
}
)