-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (31 loc) · 943 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
30
31
32
33
# coding: utf8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='COVERnant',
version='0.3.2',
packages=['covernantlib'],
author='Konrad U. Förstner',
author_email='[email protected]',
description='A tool to generate and manipulate coverage plots of '
'high-throughput sequencing data.',
url='https://github.com/konrad/COVERnant',
install_requires=[
"pybedtools >= 0.7.10",
"matplotlib >= 2.2.2",
"pandas >= 0.22.0",
"pysam >= 0.14.1",
"numpy >= 1.14.2"
],
scripts=['bin/covernant'],
license='ISC License (ISCL)',
long_description=open('README.rst').read(),
classifiers=[
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
)