-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
57 lines (50 loc) · 1.22 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
[build-system]
requires = ["maturin>=1.3.0,<1.4"]
build-backend = "maturin"
[project]
name = "oxbow"
dynamic = ["version"]
description = "Read specialized bioinformatic file formats into dataframes."
authors = [
{ name = "Oxbow Developers", email = "[email protected]" }
]
license = { text = "MIT OR Apache-2.0" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
homepage = "https://github.com/abdenlab/oxbow"
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.hatch.envs.default]
dependencies = [
"jupyterlab",
"pandas",
"polars",
"pyarrow",
"pysam",
]
[tool.hatch.envs.docs]
dependencies = [
"furo",
"myst_parser>=0.13",
"sphinx>=4.0",
"sphinx-autobuild",
"sphinx-book-theme>=0.1.0",
"sphinx_copybutton",
]
[tool.hatch.envs.docs.scripts]
build = "sphinx-build docs docs/_build/html"
serve = "sphinx-autobuild docs docs/_build/html"
[tool.hatch.envs.test]
dependencies = [
"polars",
"pytest",
]
[tool.hatch.envs.test.scripts]
all = "pytest {args:tests}"
[tool.ruff.isort]
known-first-party = ["oxbow"]