-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (26 loc) · 806 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name="bam2plot",
version="0.3.7",
description="Plot of coverage from bam file",
url="https://github.com/willros/bam2plot",
author="William Rosenbaum",
author_email="[email protected]",
license="MIT",
packages=setuptools.find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.10",
install_requires=[
"pysam==0.22.0",
"seaborn==0.13.2",
"polars==0.20.15",
"mappy==2.28",
"pyfastx",
"pyarrow",
],
entry_points={"console_scripts": ["bam2plot=bam2plot.main:cli"]},
)