Skip to content
Snippets Groups Projects
Commit 52b5520d authored by Hock, Martin's avatar Hock, Martin
Browse files

Merge branch 'improve/metadata' into 'dev'

See merge request !36
parents ee7c401e 5bdd5bcc
No related branches found
No related tags found
2 merge requests!41Include latest changes in main branch,!36Change author entry. Add Documentation and Source URLs. Raise Dev Status to Alpha (3).
Pipeline #834913 failed
# plotID for Python # plotID for Python
![The plotID logo](docs/source/_static/plotID_logo_small.png)
This is the python plotID project. This is the python plotID project.
plotID is a program connected to Research Data Management (RDM). It has two main functionalities: plotID is a program connected to Research Data Management (RDM). It has two main functionalities:
1. Tag your plot with an identifier. 1. Tag your plot with an identifier.
......
docs/source/_static/plotID.png

28.5 KiB | W: | H:

docs/source/_static/plotID.png

15.3 KiB | W: | H:

docs/source/_static/plotID.png
docs/source/_static/plotID.png
docs/source/_static/plotID.png
docs/source/_static/plotID.png
  • 2-up
  • Swipe
  • Onion skin
docs/source/_static/plotID_logo_small.png

17.5 KiB

docs/source/_static/publish.png

98.3 KiB | W: | H:

docs/source/_static/publish.png

58.4 KiB | W: | H:

docs/source/_static/publish.png
docs/source/_static/publish.png
docs/source/_static/publish.png
docs/source/_static/publish.png
  • 2-up
  • Swipe
  • Onion skin
docs/source/_static/tagplot.png

79.5 KiB | W: | H:

docs/source/_static/tagplot.png

47.4 KiB | W: | H:

docs/source/_static/tagplot.png
docs/source/_static/tagplot.png
docs/source/_static/tagplot.png
docs/source/_static/tagplot.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -57,6 +57,7 @@ exclude_patterns = [] ...@@ -57,6 +57,7 @@ exclude_patterns = []
# a list of builtin themes. # a list of builtin themes.
# #
html_theme = 'sphinx_rtd_theme' html_theme = 'sphinx_rtd_theme'
html_logo = '_static/plotID.jpg'
# Add any paths that contain custom static files (such as style sheets) here, # Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files, # relative to this directory. They are copied after the builtin static files,
......
...@@ -132,7 +132,7 @@ class PublishOptions: ...@@ -132,7 +132,7 @@ class PublishOptions:
overwrite_dir = input('Do you want to overwrite ' overwrite_dir = input('Do you want to overwrite '
'the existing folder? ' 'the existing folder? '
'(yes/no[default])\n') '(yes/no[default])\n')
if overwrite_dir in ('yes', 'y'): if overwrite_dir in ('yes', 'y', 'Yes', 'YES'):
shutil.rmtree(dst_path) shutil.rmtree(dst_path)
else: else:
raise RuntimeError('publish has finished ' raise RuntimeError('publish has finished '
...@@ -150,7 +150,7 @@ class PublishOptions: ...@@ -150,7 +150,7 @@ class PublishOptions:
'partially copied data at ' 'partially copied data at '
f'{dst_path_invisible} be' f'{dst_path_invisible} be'
' removed? (yes/no[default])\n') ' removed? (yes/no[default])\n')
if delete_dir in ('yes', 'y'): if delete_dir in ('yes', 'y', 'Yes', 'YES'):
shutil.rmtree(dst_path_invisible) shutil.rmtree(dst_path_invisible)
raise RuntimeError('Publishing was unsuccessful. ' raise RuntimeError('Publishing was unsuccessful. '
'Try re-running publish.') from exc 'Try re-running publish.') from exc
......
[metadata] [metadata]
name = plotID name = plotID
version = attr: plotid.__version__ version = attr: plotid.__version__
author = attr: plotid.__author__ author = Martin Hock
author_email = nfdi4ing@fst.tu-darmstadt.de author_email = nfdi4ing@fst.tu-darmstadt.de
description = The plotID toolkit supports researchers in tracking and storing relevant data in plots. Plots are labelled with an ID and the corresponding data is stored. description = The plotID toolkit supports researchers in tracking and storing relevant data in plots. Plots are labelled with an ID and the corresponding data is stored.
license = Apache License, Version 2.0 license = Apache License, Version 2.0
...@@ -11,16 +11,20 @@ long_description_content_type = text/markdown ...@@ -11,16 +11,20 @@ long_description_content_type = text/markdown
url = https://git.rwth-aachen.de/plotid/plotid_python url = https://git.rwth-aachen.de/plotid/plotid_python
project_urls = project_urls =
Bug Tracker = https://git.rwth-aachen.de/plotid/plotid_python/-/issues Bug Tracker = https://git.rwth-aachen.de/plotid/plotid_python/-/issues
Documentation = https://plotid.pages.rwth-aachen.de/plotid_python
Source = https://git.rwth-aachen.de/plotid/plotid_python
classifiers = classifiers =
Programming Language :: Python Programming Language :: Python
Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.10
License :: OSI Approved :: Apache Software License License :: OSI Approved :: Apache Software License
Operating System :: OS Independent Operating System :: OS Independent
Development Status :: 2 - Pre-Alpha Development Status :: 3 - Alpha
Intended Audience :: Science/Research Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Visualization Topic :: Scientific/Engineering :: Visualization
[options] [options]
packages = plotid packages = plotid
python_requires = >=3.10 python_requires = >=3.10
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment