-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
35 lines (32 loc) · 1.17 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='BESST',
version='2.2.8',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
scripts=['runBESST', 'scripts/reads_to_ctg_map.py'],
description='Scaffolder for genomic assemblies.',
author='Kristoffer Sahlin',
author_email='[email protected]',
url='https://github.com/ksahlin/BESST',
license='GPLv3',
long_description=long_description,
install_requires=['pysam==0.8.4',
'networkx<=1.9',
'mathstats>=0.2.6.5',
'scipy==1.0.0'],
)