-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (39 loc) · 1.11 KB
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "phantombuster"
version = "0.15.0"
description = "Bioinformatical tool to remove sequencing artifacts originating from single-nucleotide errors and index hopping from barcode-based experiments"
authors = ["Simon Haendeler <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
pandas = "^2.0"
pysam = "^0.22.0"
regex = "^2022.10.31"
pyarrow = "^15"
click = "^8.1.3"
zmq = "^0.0.0"
trio = "^0.22.0"
scipy = "^1.10.1"
polars = "^1.0"
[tool.poetry.dev-dependencies]
mypy = "^0.990"
pytest = "^7.2.0"
Cython = "^0.29.32"
cibuildwheel = "^2.12.0"
[tool.poetry.group.dev.dependencies]
auditwheel = "^5.3.0"
sphinx = "^7.3.7"
sphinx-rtd-theme = "^2.0.0"
sphinx-click = "^6.0.0"
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[build-system]
requires = ["poetry-core", "cython", "numpy", "pyarrow==15.0.2", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.poetry.scripts]
phantombuster = 'phantombuster.cli:phantombuster'