https://github.com/ctlab/quant3p
Revision f9e9f0434c7a189d3912c601f28424a8bfa56120 authored by Alexey Sergushichev on 09 December 2014, 18:33:39 UTC, committed by Alexey Sergushichev on 09 December 2014, 18:33:39 UTC
2 parent s c2bbee3 + ae0222f
Raw File
Tip revision: f9e9f0434c7a189d3912c601f28424a8bfa56120 authored by Alexey Sergushichev on 09 December 2014, 18:33:39 UTC
Merge branch 'master' of github.com:ctlab/quant3p
Tip revision: f9e9f04
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',
          '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)
back to top