-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 948 Bytes
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 948 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
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "GabesPythonToolBox"
version = "1.9.2"
description = "A collection of useful Python tools"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Gabriel Røer", email = "NorgeSkiFollo@gmail.com" }]
requires-python = ">=3.14"
dependencies = [
"matplotlib>=3.10.6,<3.11",
"PyYAML>=6.0.2,<7.0",
]
[project.optional-dependencies]
testing = [
"pytest>=8.0",
"pytest-cov",
"coverage",
]
dev = [
"pre-commit",
"black",
"isort",
"mypy",
"flake8",
]
[project.urls]
"Homepage" = "https://github.com/NorgeSkiFollo/GabesPythonToolBox"
"Repository" = "https://github.com/NorgeSkiFollo/GabesPythonToolBox.git"
[tool.setuptools.packages.find]
where = ["GabesPythonToolBox"]
exclude = ["tests*", "docs*"]
[tool.black]
line-length = 88
target-version = ["py312"]
[tool.isort]
profile = "black"
line_length = 88