-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "process-intelligence"
version = "10.0.3"
description = "A sample process intelligence Python project."
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"process intelligence",
]
authors = [
{ name = "Lukas Schulze Balhorn", email = "l.schulzebalhorn@tudelft.nl" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
[project.optional-dependencies]
dev = [
"pre-commit>=3.7.1",
"ruff>=0.3.0",
"pytest>=7.0",
]
[project.urls]
Homepage = "https://github.com/LukasSchBal/test"
Source = "https://github.com/LukasSchBal/test-dev"
[tool.ruff]
line-length = 100
[tool.hatch.build.targets.wheel]
packages = ["src", "utils"]
[tool.ruff.lint]
extend-select = ["Q", "RUF100", "UP", "I", "E", "F"]
extend-ignore = [
"E501", # line too long
]
isort = { combine-as-imports = true }
[tool.ruff.lint.pydocstyle]
convention = "numpy"