Skip to content

Commit e0caf6f

Browse files
committed
migrated to uv
1 parent 753a5f3 commit e0caf6f

File tree

8 files changed

+837
-1000
lines changed

8 files changed

+837
-1000
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Python package with helper functions for working with FAU's [High Performance Cl
1212

1313
## Installation
1414

15-
``hpc-helper`` requires Python >=3.7. First, install a compatible version of Python.
15+
``hpc-helper`` requires Python >=3.8. First, install a compatible version of Python.
1616
Then you can install ``hpc-helper`` via pip.
1717

1818
Installation from [PyPi](https://pypi.org/):

poetry.lock

Lines changed: 0 additions & 982 deletions
This file was deleted.

poetry.toml

Lines changed: 0 additions & 2 deletions
This file was deleted.

pyproject.toml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,28 @@
1-
[tool.poetry]
1+
[project]
22
name = "hpc_helper"
33
version = "0.3.3"
44
description = "Python package with helper functions for working with FAU's High Performance Cluster (HPC)."
5-
authors = ["Robert Richer <robert.richer@fau.de>"]
5+
authors = [{ name = "Robert Richer", email = "robert.richer@fau.de" }]
6+
requires-python = ">=3.8,<3.13"
67
readme = "README.md"
7-
homepage = "https://github.com/mad-lab-fau/hpc-helper"
8-
repository = "https://github.com/mad-lab-fau/hpc-helper"
98
license = "MIT"
109

11-
[tool.poetry.dependencies]
12-
python = ">=3.8,<3.13"
10+
[project.urls]
11+
Homepage = "https://github.com/mad-lab-fau/hpc-helper"
12+
Repository = "https://github.com/mad-lab-fau/hpc-helper"
1313

14-
[tool.poetry.dev-dependencies]
15-
black = { version="^22", extras=["d"] }
16-
pytest = "^6"
17-
pytest-cov = "^3.0.0"
18-
poethepoet = "^0.11.0"
19-
ruff = "^0.1.1"
14+
[dependency-groups]
15+
dev = [
16+
"black[d]>=22,<23",
17+
"pytest>=6,<7",
18+
"pytest-cov>=3.0.0,<4",
19+
"poethepoet>=0.11.0,<0.12",
20+
"ruff>=0.1.1,<0.2",
21+
]
2022

2123
[build-system]
22-
requires = ["poetry-core>=1.0.0"]
23-
build-backend = "poetry.core.masonry.api"
24+
requires = ["hatchling"]
25+
build-backend = "hatchling.build"
2426

2527
[tool.black]
2628
line-length = 120
@@ -49,7 +51,6 @@ multi_line_output = 3
4951
line_length = 120
5052
skip_gitignore = true
5153

52-
5354
[tool.poe.tasks]
5455
_format = "ruff format ."
5556
_auto_fix = "ruff . --fix-only --exit-zero"
File renamed without changes.
File renamed without changes.
File renamed without changes.

uv.lock

Lines changed: 820 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)