generated from EED-Solutions/eed_package_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1009 Bytes
/
pyproject.toml
File metadata and controls
51 lines (45 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "eed-docker-python-uv"
version = "0.1.0"
description = "Manages the Python environment for EED-Solutions Docker images using uv."
readme = "README.md"
authors = [
{ name = "EED85", email = "eric.brahmann@eed-solutions.de" }
]
requires-python = ">=3.12"
dependencies = [
"eed-basic-utils",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"ruff==0.12.3",
]
[project.scripts]
hello_world = "eed_docker_python_uv.hello_world:hello_world"
[tool.ruff]
# Set the maximum line length to 79.
line-length = 79
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["E501"] # Line too long (let black handle this)
[tool.uv.sources]
eed-basic-utils = { git = "https://github.com/EED-Solutions/eed_basic_utils" }