Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ permissions:
contents: read # to fetch code (actions/checkout)
jobs:
ubuntu-minimal:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: set up Python
Expand Down
Empty file removed eessi/__init__.py
Empty file.
24 changes: 24 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "eessi"
description = "User-friendly command line interface to EESSI - https://eessi.io"
readme = "README.md"
authors = [
{name = "Kenneth Hoste"},
]
license = {file = "LICENSE"}
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"typer>=0.21",
"rich>=14.0",
]

[project.scripts]
eessi = "eessi.cli.main:app"

[tool.setuptools.dynamic]
version = {attr = "eessi.__version__"}
22 changes: 0 additions & 22 deletions setup.py

This file was deleted.

1 change: 1 addition & 0 deletions src/eessi/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.4"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.