From 70bfc6e0b7037e50ab72ed3fc43062d851434b3f Mon Sep 17 00:00:00 2001 From: Denperidge Date: Thu, 3 Aug 2023 12:08:04 +0200 Subject: [PATCH] Added -v to cicd test, removed divio-docs-gen leftovers --- .gitignore | 12 +++++------- .woodpecker/test.yml | 2 +- docs.conf.example | 20 -------------------- pyproject.toml | 13 +++++-------- 4 files changed, 11 insertions(+), 36 deletions(-) delete mode 100644 docs.conf.example diff --git a/.gitignore b/.gitignore index 16d2e57..9606dd5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,9 @@ +# Python cache __pycache__ -docs.conf -docs/ -tmp/ -repos/ -# Package build +# Auto-generated test data +src/tests/data/ + +# Package building dist/ *.egg-info/ - -src/tests/data/ \ No newline at end of file diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 920c6ff..6d64bea 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -2,4 +2,4 @@ pipeline: test: image: python:3.10 commands: - - python3 -m unittest + - python3 -m unittest -v diff --git a/docs.conf.example b/docs.conf.example deleted file mode 100644 index acf8789..0000000 --- a/docs.conf.example +++ /dev/null @@ -1,20 +0,0 @@ -[Output Configuration] -writetodisk = True -generatenav = True -docsbasedir = docs/ - -[Naming Scheme] -tutorials = Tutorials -how_to_guides = How-Tos -explanation = explanation -reference = Reference - -[Repository Selection] - -[https://github.com/mu-semtech/mu-cl-resources] -url = https://github.com/mu-semtech/mu-cl-resources - -[https://github.com/denperidge-redpencil/project] -url = https://github.com/denperidge-redpencil/project -Move=documentation.md/reference -Ignore=building-a-template.md//why-semantic-microservices.md diff --git a/pyproject.toml b/pyproject.toml index dca8b4a..47ed2c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,21 +4,18 @@ version = "0.0.1" authors = [ { name="Denperidge", email="denperidge@gmail.com" }, ] -description = "Turn all the markdown files in your repos into one big, divio structrured documentation" +description = "Collect and parse all your divio-style documentation with just one line of code!" readme = "README.md" requires-python = ">=3.6" -dependencies = [ - "GitPython", - "python-slugify", -] +dependencies = [] classifiers = [ "Development Status :: 4 - Beta", - "Environment :: Console", - "Intended Audience :: Information Technology", + "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Topic :: Software Development :: Documentation", + "Topic :: Text Processing :: Markup :: Markdown" ] [project.urls] @@ -27,4 +24,4 @@ classifiers = [ [build-system] requires = ["setuptools>=61.0"] -build-backend = "setuptools.build_meta" \ No newline at end of file +build-backend = "setuptools.build_meta"