-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (26 loc) · 952 Bytes
/
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
[tool.poetry]
name = "sleevop"
version = "2023.04.03"
description = "SleeVop (Sleep Envelope Synchronisation): a Python package to analyse sleep envelope synchronisation."
authors = ["Simon J. Guillot"]
license = "Apache License 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10"
[tool.poetry.dev-dependencies]
[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version",
] # version location
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "pip install poetry && poetry build" # build dists
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
[tool.ruff.format]
quote-style = "single"
indent-style = "tab"
docstring-code-format = true