-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (27 loc) · 1.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
32
#!/usr/bin/env python
# *- coding: utf-8 -*-
# vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4 textwidth=79:
import blc
from setuptools import setup
# from distutils.core import setup
def get_requirements():
with open('requirements.txt', 'r') as fh:
content = fh.read().strip().split()
return content
setup(name="bam-lorenz-coverage",
scripts=['bin/bam-lorenz-coverage'],
packages=["blc"],
test_suite="tests",
tests_requires=['nose', 'pytest', 'pytest-cov', 'flake8'],
install_requires=get_requirements(),
version=blc.__version__,
description="BAM coverage stats plots",
author=blc.__author__,
url=blc.__homepage__,
keywords=["NGS", "BAM", "Lorenz", "coverage"],
classifiers=['Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics'])