-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 807 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
[project]
name = "pipeline-component-system"
version = "0.5.2"
authors = [
{ name="Daniel Cauchi" },
]
description = "A strange programming framework"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT No Attribution License (MIT-0)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Natural Language :: English",
"Intended Audience :: Developers"
]
dependencies = [
"oyaml>=1.0",
"omegaconf>=2.3.0",
]
[project.urls]
Homepage = "https://github.com/CowKeyMan/PCS"
Issues = "https://github.com/CowKeyMan/PCS/issues"
[tool.pyright]
typeCheckingMode = "standard"
reportPrivateImportUsage = false
[tool.ruff]
lint.extend-select = ["I"]
line-length = 80
indent-width = 4