-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
40 lines (33 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "detectree-examples"
version = "0.1.0"
description = "Example computational workflow using DetecTree"
authors = [{ name = "Martí Bosch", email = "marti.bosch@epfl.ch" }]
readme = "README.md"
license = { text = "GPL-3.0-only" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
[project.urls]
Repository = "https://github.com/martibosch/detectree-examplse"
[tool.setuptools.packages.find]
include = ["detectree_examples", "detectree_examples.*"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.lint.isort]
known-first-party = ["detectree_examples"]
[tool.nbqa.addopts]
# ignore documentation errors in notebooks
ruff = ["--ignore=D"]