-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 902 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (31 loc) · 902 Bytes
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
30
31
32
33
34
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.4.1",
description="Plot of coverage from bam file",
url="https://github.com/willros/bam2plot",
author="William Rosenbaum",
author_email="william.rosenbaum@gmail.com",
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",
"numpy",
"pandas",
],
extras_require={
"test": ["pytest>=7.0"],
},
entry_points={"console_scripts": ["bam2plot=bam2plot.main:cli"]},
)