Revision 7c9015bd11e2c7359f3311d9202aea6be69b4131 authored by Gabe DuBose on 10 June 2022, 00:10:28 UTC, committed by GitHub on 10 June 2022, 00:10:28 UTC
1 parent 7e56464
Raw File
setup.py
from importlib.metadata import entry_points
import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="emus",
    version="1.0.0",
    author="Gabe DuBose",
    author_email="gabe.dubose.sci@gmail.com",
    description="A package for statistically evaluating mutational class frequencies",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/gabe-dubose/emus",
    packages=setuptools.find_packages(),
    classifiers=(
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ),
    scripts=['bin/compare-variants', 'bin/plot-variant-comparisons', 'bin/plot-vcf-histogram', 'bin/get-annotations', 'bin/simulate-mutations']
)
back to top