forked from neuroinformatics-unit/python-cookiecutter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 823 Bytes
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
[project]
name = "python-cookiecutter"
authors = [{ name = "Neuroinformatics Unit" }]
description = "A tool to automatically create a Python project structure ready to release via GitHub and PyPI."
readme = "README.md"
dynamic = ["version"]
license = "BSD-3-Clause"
license-files = ["LICENSE"]
[build-system]
requires = [
"setuptools>=77",
"wheel",
"setuptools-scm[toml]>=8",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.ruff]
line-length = 79
exclude = ["__init__.py", "build", ".eggs"]
lint.select = ["I", "E", "F"]
fix = true
[tool.ruff.format]
docstring-code-format = true # Also format code in docstrings
[tool.codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = '.git'
check-hidden = true
# ignore-regex = ''
# ignore-words-list = ''