-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (52 loc) · 1.28 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
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["poetry-core>=1.0.0", "maturin>=1.0,<2.0", "polars>=1.3.0"]
build-backend = "maturin"
[project]
name = "polars-bio"
version = "0.3.0"
description = "Blazing fast genomic operations on large Python dataframes"
authors = []
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"polars~=1.16.0",
"pandas~=2.2.3",
"pyarrow~=18.1.0",
"datafusion ~=42.0.0",
"bioframe ~=0.7.2"]
[tool.maturin]
module-name = "polars_bio"
[[tool.mypy.overrides]]
module = "polars.utils.udfs"
ignore_missing_imports = true
[tool.poetry]
name = "polars-bio"
version = "0.1.0"
description = ""
authors = ["Marek Wiewiórka <marek.wiewiorka@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
polars = "^1.16.0"
pandas = "^2.2.3"
pyarrow = "^18.1.0"
datafusion = "^42.0.0"
bioframe = "^0.7.2"
[tool.poetry.dev-dependencies]
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
pre-commit = "^4.0.1"
jupyter = "^1.1.0"
ruff = "^0.8.2"
maturin = "^1.7.5"
mdpd = "^0.2.1"
mkdocs = "^1.6.1"
mkdocs-jupyter = "^0.25.1"
mkdocs-material = "^9.5.48"
mike = "^2.1.3"
mkdocstrings-python = "^1.12.2"
mypy = "^1.13.0"