forked from ethanagb/SiLiCO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (19 loc) · 868 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#################################
######### SiLiCO v. 1.0 #########
### (c)2016 Ethan A. G. Baker ###
##### ethanagbaker@pitt.edu #####
#################################
from distutils.core import setup
import setuptools
setup(name='SiLiCO',
version='1.0.1',
description='A Simulator of Long Read Sequencing in PacBio and Oxford Nanopore',
author='Ethan Alexander Garcia Baker',
author_email='ethanagbaker@pitt.edu',
url='https://ethanagbaker.github.io',
license='GNU',
packages=setuptools.find_packages(),
py_modules=['simulateReads','convertToFasta','generateChrDist','splitGenomeFasta','getRandomPosition','findChromosome', 'SiLiCO'],
classifiers=['Programming Language :: Python :: 2.7.11','License :: OSI Approved :: GNU GPL'],
install_requires=['numpy', 'natsort','pybedtools','pysam==0.8.4']
)