https://github.com/gabe-dubose/emus
Tip revision: 1a785e02d4c427c6774a1e01c415288e36c72e9c authored by Gabe DuBose on 01 November 2023, 16:33:08 UTC
Added scripts used in Pentz et al 2023
Added scripts used in Pentz et al 2023
Tip revision: 1a785e0
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']
)