Skip to content

Commit

Permalink
V0.11.14 (#76)
Browse files Browse the repository at this point in the history
* Prepare next release

* Sphinx docs

* Sphinx docs
  • Loading branch information
perdelt committed Aug 31, 2021
1 parent 18db351 commit f90d522
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
```{include} ../README.md
```
37 changes: 37 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Configuration file for the Sphinx documentation builder.

# -- Project information

project = 'DBMSBenchmarker'
copyright = '2021, Patrick Erdelt'
author = 'Patrick Erdelt'

release = '0.1'
version = '0.1.0'

# -- General configuration

extensions = [
'sphinx.ext.duration',
'sphinx.ext.doctest',
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.intersphinx',
"myst_parser",
]

intersphinx_mapping = {
'python': ('https://docs.python.org/3/', None),
'sphinx': ('https://www.sphinx-doc.org/en/master/', None),
}
intersphinx_disabled_domains = ['std']

templates_path = ['_templates']

# -- Options for HTML output

html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']

# -- Options for EPUB output
epub_show_urls = 'footnote'
7 changes: 7 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.. toctree::
:maxdepth: 2
:caption: Table of Contents:

../README.md
...
.. mdinclude:: ../README.md
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ six>=1.14.0
urllib3==1.26.5
uuid>=1.30
Werkzeug>=1.0.1
myst-parser
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name="dbmsbenchmarker",
version="0.11.13",
version="0.11.14",
author="Patrick Erdelt",
author_email="perdelt@beuth-hochschule.de",
description="DBMS-Benchmarker is a Python-based application-level blackbox benchmark tool for Database Management Systems (DBMS). It connects to a given list of DBMS (via JDBC) and runs a given list of parametrized and randomized (SQL) benchmark queries. Evaluations are available via Python interface, in reports and at an interactive multi-dimensional dashboard.",
Expand Down

0 comments on commit f90d522

Please sign in to comment.