Revision 3761fafbedf18dc8b3da6b637de71fabf3755634 authored by Alexey Sergushichev on 26 November 2014, 14:11:23 UTC, committed by Alexey Sergushichev on 26 November 2014, 14:11:23 UTC
1 parent c2f3a9d
Raw File
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',
          'macs2 >= 2.1.0'
          ],
      scripts=['bin/macs2-stranded'],
      entry_points = {
          'console_scripts': [
              'fix-mm=quant3p.fixmm:main',
              'gtf-extend=quant3p.gtfextend:main'],
          },
      zip_safe=False)
back to top