https://github.com/NICHD-BSPC/termseq-peaks
Raw File
Tip revision: 8bb48d2a034b22a312a7e848e0f8694a284a8324 authored by daler on 20 November 2020, 22:25:56 UTC
temporarily remove conda installation instructions
Tip revision: 8bb48d2
setup.py
from distutils.core import setup

requirements = [i.strip() for i in open('requirements.txt')]
setup(
    name='termseq_peaks',
    version='0.1',
    author='Ryan Dale',
    author_email='dalerr@nih.gov',
    license='MIT',
    scripts=['bin/termseq_peaks'],
    url='https://github.com/nichd-bspc/termseq-peaks',
    packages=['peaklib'],
    install_requires=requirements,
    long_description=open('README.rst').read(),
)
back to top