-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.68 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "pyreflow"
description = "Fully-compliant Flow Cytometry Standard (FCS) read/write library"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: File Formats",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = [
"polars==1.26.0",
# TODO see https://docs.pola.rs/user-guide/misc/arrow/#for-library-maintainers
"pyarrow>7.0.0",
"numpy==2.3.2",
]
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[dependency-groups]
all = [
{ include-group = "dev" },
{ include-group = "lint" },
{ include-group = "testing" },
{ include-group = "docs" },
]
dev = ["maturin[patchelf]"]
lint = [
{ include-group = "dev" },
"mypy[faster-cache]",
"ruff",
]
testing = [
{ include-group = "dev" },
"pytest==8.4.1",
]
docs = [
"sphinx"
]
[tool.maturin]
python-source = "python"
module-name = "pyreflow._pyreflow"
features = ["pyo3/extension-module"]
[tool.mypy]
warn_return_any = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
strict_equality = true
extra_checks = true
check_untyped_defs = true
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 20