-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (66 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
75 lines (66 loc) · 2.09 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "dakarabase"
authors = [
{name = "Neraste", email = "neraste.herr10@gmail.com"},
]
description = "Collection of helper modules for the Dakara Project"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">= 3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Developers",
]
dependencies = [
"coloredlogs>=15.0.1,<15.1.0",
"environs>=15.0.0,<15.1.0",
"furl>=2.1.4,<2.2.0",
"platformdirs>=4.9.4,<4.10.0",
"progressbar2>=4.5.0,<4.6.0",
"PyYAML>=6.0.3,<6.1",
"requests>=2.33.1,<2.34.0",
"websocket-client>=1.9.0,<1.10.0",
]
[project.optional-dependencies]
dev = [
"black>=26.3.1,<27.0.0",
"codecov>=2.1.13,<2.2.0",
"isort>=8.0.1,<8.1.0",
"pdoc>=16.0.0,<16.1.0",
"pre-commit>=4.5.1,<4.6.0",
"pytest-cov>=7.1.0,<7.2.0",
"pytest>=9.0.2,<9.1.0",
"ruff>=0.15.9,<0.16.0",
]
# note: update the build-system section below
# note: update .pre-commit-config.yaml as well
[project.urls]
Homepage = "https://github.com/DakaraProject/dakara-base"
Repository = "https://github.com/DakaraProject/dakara-base.git"
Issues = "https://github.com/DakaraProject/dakara-base/issues"
Changelog = "https://github.com/DakaraProject/dakara-base/blob/master/CHANGELOG.md"
[build-system]
requires = ["setuptools>=82.0.1"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "dakara_base.version.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest]
addopts = ["--cov=dakara_base"]
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "W", "B"]
ignore = []