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

Change setup.cfg metadata. Adjust author entry. Add documentation and source...

Change setup.cfg metadata. Adjust author entry. Add documentation and source URLs. Raise Dev Status to Alpha (3). 
Include diagrams /icon and upstream changes to documentation.
parent ee7c401e
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).
# plotID for Python
![The plotID logo](docs/source/_static/plotID_logo_small.png)
This is the python plotID project.
plotID is a program connected to Research Data Management (RDM). It has two main functionalities:
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 = []
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'
html_logo = '_static/plotID.jpg'
# 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,
......
......@@ -132,7 +132,7 @@ class PublishOptions:
overwrite_dir = input('Do you want to overwrite '
'the existing folder? '
'(yes/no[default])\n')
if overwrite_dir in ('yes', 'y'):
if overwrite_dir in ('yes', 'y', 'Yes', 'YES'):
shutil.rmtree(dst_path)
else:
raise RuntimeError('publish has finished '
......@@ -150,7 +150,7 @@ class PublishOptions:
'partially copied data at '
f'{dst_path_invisible} be'
' removed? (yes/no[default])\n')
if delete_dir in ('yes', 'y'):
if delete_dir in ('yes', 'y', 'Yes', 'YES'):
shutil.rmtree(dst_path_invisible)
raise RuntimeError('Publishing was unsuccessful. '
'Try re-running publish.') from exc
......
[metadata]
name = plotID
version = attr: plotid.__version__
author = attr: plotid.__author__
author = Martin Hock
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.
license = Apache License, Version 2.0
......@@ -11,16 +11,20 @@ long_description_content_type = text/markdown
url = https://git.rwth-aachen.de/plotid/plotid_python
project_urls =
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 =
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Development Status :: 2 - Pre-Alpha
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Visualization
[options]
packages = plotid
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