-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (29 loc) · 1009 Bytes
/
pyproject.toml
File metadata and controls
37 lines (29 loc) · 1009 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
36
37
# Configuration file for packaging
# See https://packaging.python.org/en/latest/guides/writing-pyproject-toml for details
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "osl-dynamics"
version = "3.2.dev2"
description = "OHBA Software Library: Dynamics Toolbox"
readme = {file = "README.md", content-type = "text/markdown"}
license = "Apache-2.0"
requires-python = ">=3.8"
[project.urls]
"Homepage" = "https://github.com/OHBA-analysis/osl-dynamics"
"Documentation" = "https://osl-dynamics.readthedocs.io/en/latest/"
[project.scripts]
osl-dynamics = "osl_dynamics.config_api.pipeline:osl_dynamics_cli"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*"]
[tool.codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = '.git*,*.pdf,*.gii,*.scene'
check-hidden = true
# ignore-regex = ''
ignore-words-list = 'fo,fro,commun'