-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (39 loc) · 1.16 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
[project]
name = "faery"
description = "Ferries event-based data from A to B"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Alexandre Marcireau", email = "[email protected]" },
{ name = "Jens Egholm Pedersen", email = "[email protected]" },
{ name = "Gregor Lenz", email = "[email protected]" },
]
requires-python = ">=3.9"
dependencies = ["numpy>=1.26"]
version = "0.5.0"
[project.optional-dependencies]
tests = ["pytest==8.3.3"]
[project.scripts]
faery = "faery:__main__.main"
[project.urls]
homepage = "https://github.com/aestream/faery/"
repository = "https://github.com/aestream/faery/"
documentation = "https://github.com/aestream/faery/"
[build-system]
requires = ["maturin==1.7.4"]
build-backend = "maturin"
[tool.maturin]
include = ["python/faery/cli/faery_script.mustache"]
python-source = "python"
module-name = "faery.extension"
features = ["pyo3/extension-module"]
[tool.pyright]
typeCheckingMode = "basic"
executionEnvironments = [{ root = ".", venv = ".venv" }]
exclude = ["**/__pycache__", "**/.*", "src"]
[tool.isort]
profile = "black"
sort_reexports = true
extend_skip = ["src"]
[tool.black]
extend-exclude = "src"