https://github.com/ctlab/quant3p
Revision 9db72069e3a18b853092a7fc46bf624f62504dcf authored by Alexey Sergushichev on 11 December 2014, 19:34:20 UTC, committed by Alexey Sergushichev on 11 December 2014, 19:34:20 UTC
1 parent e015f87
Tip revision: 9db72069e3a18b853092a7fc46bf624f62504dcf authored by Alexey Sergushichev on 11 December 2014, 19:34:20 UTC
Update README.md
Update README.md
Tip revision: 9db7206
setup.py
from setuptools import setup
setup(name='quant3p',
version='0.1',
description='Tools to do 3\' RNA-seq quantification',
url='http://github.com/ctlab/quant3p',
author='Alexey Sergushichev',
author_email='alserg@rain.ifmo.ru',
license='Apache2',
packages=['quant3p'],
install_requires=[
'HTSeq',
'pysam',
'pybedtools >= 0.6.9',
'macs2 >= 2.1.0'
],
scripts=['bin/macs2-stranded', 'bin/quant3p'],
entry_points = {
'console_scripts': [
'fix-mm=quant3p.fixmm:main',
'gtf-extend=quant3p.gtfextend:main'],
},
zip_safe=False)

Computing file changes ...