forked from ksahlin/BESST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1004 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
import os
from setuptools import setup, find_packages
setup(
name='BESST',
version='2.2.7',
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=open(os.path.join(os.getcwdu(), 'README.md')).read(),
install_requires=['pysam>=0.7',
'networkx>=1.9',
'mathstats>=0.2.6',
'scipy>=0.9'],
)