Skip to content
Snippets Groups Projects
Commit 3a39455b authored by Hans Fangohr's avatar Hans Fangohr
Browse files

Merge branch 'update-pyproject-data' into 'main'

Update pyproject data

Closes #32 and #15

See merge request !97
parents e6e1939c 4ca97242
No related branches found
No related tags found
1 merge request!97Update pyproject data
Pipeline #374784 passed
...@@ -7,8 +7,9 @@ name = "mpsd_software_manager" ...@@ -7,8 +7,9 @@ name = "mpsd_software_manager"
authors = [{name = "SSU-Computational Science (Fangohr et al)", email = "ssu-cs@mpsd.mpg.de"}] authors = [{name = "SSU-Computational Science (Fangohr et al)", email = "ssu-cs@mpsd.mpg.de"}]
license = {file = "LICENSE"} license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"] classifiers = ["License :: OSI Approved :: MIT License"]
version = "2023.6.14" version = "2023.6.27"
readme = "README.rst" readme = "README.rst"
requires-python = ">=3.9"
dependencies = [ dependencies = [
"archspec", "archspec",
"rich", "rich",
...@@ -17,7 +18,8 @@ dependencies = [ ...@@ -17,7 +18,8 @@ dependencies = [
mpsd-software = "mpsd_software_manager.mpsd_software:main" mpsd-software = "mpsd_software_manager.mpsd_software:main"
[project.urls] [project.urls]
Home = "https://gitlab.gwdg.de/mpsd-cs/mpsd-software-manager/" homepage = "https://gitlab.gwdg.de/mpsd-cs/mpsd-software-manager/"
repository = "https://gitlab.gwdg.de/mpsd-cs/mpsd-software-manager/"
[project.optional-dependencies] [project.optional-dependencies]
dev = [ dev = [
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
"""mpsd-software: tool for installation of software as on MPSD HPC.""" """mpsd-software: tool for installation of software as on MPSD HPC."""
__version__ = "2023.6.27"
import argparse import argparse
import datetime import datetime
...@@ -17,6 +16,9 @@ from typing import List, Tuple, Union ...@@ -17,6 +16,9 @@ from typing import List, Tuple, Union
import re import re
import shutil import shutil
from functools import cache from functools import cache
import importlib.metadata
__version__ = importlib.metadata.version(__package__ or __name__)
# If 'rich' is available ("pip install rich" or "apt-get install python3-rich"), # If 'rich' is available ("pip install rich" or "apt-get install python3-rich"),
# then use coloured output, otherwise proceed as before # then use coloured output, otherwise proceed as before
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment