Skip to content
Snippets Groups Projects
setup.py 903 B
"""Setup tool."""
from pathlib import Path
from setuptools import setup, find_packages  # type: ignore

project_root_dir = Path(__file__).parent.resolve()
with open(
    project_root_dir / "requirements.txt", "r", encoding="utf-8"
) as _file:
    INSTALL_REQUIRES = _file.read().splitlines()

URL = ('https://git.scicore.unibas.ch/zavolan_group/'
       'tools/read-sequencer')

setup(
    name='readsequencer',
    version='0.1.1',
    url=URL,
    license='MIT',
    author='Clara Serger, Michael Sandholzer and Christoph Harmel',
    author_email='christoph.harmel@unibas.ch',
    description='Simulates sequencing with a specified read length from'
                'sequences specified by a FASTA file.',
    packages=find_packages(),
    install_requires=INSTALL_REQUIRES,
    entry_points={
        'console_scripts': [
            'readsequencer=readsequencer.cli:main'
            ]
        }
)