Skip to content

Commit

Permalink
Migrate to mkdocs (#99)
Browse files Browse the repository at this point in the history
* Initial mkdocs work
  • Loading branch information
bpepple authored Jun 17, 2024
1 parent 5cf3d5e commit 107a4ac
Show file tree
Hide file tree
Showing 25 changed files with 594 additions and 490 deletions.
4 changes: 2 additions & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ build:
- poetry install --with docs

# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: docs/source/conf.py
mkdocs:
configuration: mkdocs.yaml
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Darkseid

[![PyPI - Version](https://img.shields.io/pypi/v/darkseid.svg)](https://pypi.org/project/darkseid/)
[![PyPI - Python](https://img.shields.io/pypi/pyversions/darkseid.svg)](https://pypi.org/project/darkseid/)
[![Ruff](https://img.shields.io/badge/Linter-Ruff-informational)](https://github.com/charliermarsh/ruff)
[![Pre-Commit](https://img.shields.io/badge/Pre--Commit-Enabled-informational?logo=pre-commit)](https://github.com/pre-commit/pre-commit)

A [Python](https://www.python.org/) library to interact with comic archives.

## Installation

```bash
pipx install darkeid
```
or
```bash
pip install darkeid
```

## Documentation

[Read the project documentation](https://darkseid.readthedocs.io/en/latest/?badge=latest)

## Bugs/Requests

Please use the [GitHub issue tracker](https://github.com/Metron-Project/darkseid/issues) to submit bugs or request features.
45 changes: 0 additions & 45 deletions README.rst

This file was deleted.

2 changes: 1 addition & 1 deletion darkseid/archivers/archiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def read_file(self: Archiver, archive_file: str) -> bytes:
bytes: The content of the file as bytes.
Raises:
NotImplementedError
NotImplementedError: Method or function hasn't been implemented yet.
"""

raise NotImplementedError
Expand Down
20 changes: 0 additions & 20 deletions docs/Makefile

This file was deleted.

1 change: 1 addition & 0 deletions docs/darkseid/archivers/__init__.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:::darkseid.archivers.UnknownArchiver
1 change: 1 addition & 0 deletions docs/darkseid/archivers/archiver.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:::darkseid.archivers.Archiver
1 change: 1 addition & 0 deletions docs/darkseid/archivers/rar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:::darkseid.archivers.RarArchiver
1 change: 1 addition & 0 deletions docs/darkseid/archivers/zip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:::darkseid.archivers.ZipArchiver
1 change: 1 addition & 0 deletions docs/darkseid/comic.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:::darkseid.comic.Comic
1 change: 1 addition & 0 deletions docs/darkseid/comicinfo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:::darkseid.comicinfo.ComicInfo
1 change: 1 addition & 0 deletions docs/darkseid/exceptions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:::darkseid.exceptions.RarError
1 change: 1 addition & 0 deletions docs/darkseid/issue_string.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:::darkseid.issue_string.IssueString
12 changes: 12 additions & 0 deletions docs/darkseid/metadata.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
:::darkseid.metadata.Validations
:::darkseid.metadata.PageType
:::darkseid.metadata.ImageMetadata
:::darkseid.metadata.Price
:::darkseid.metadata.Basic
:::darkseid.metadata.Universe
:::darkseid.metadata.Role
:::darkseid.metadata.Series
:::darkseid.metadata.Arc
:::darkseid.metadata.Credit
:::darkseid.metadata.GTIN
:::darkseid.metadata.Metadata
5 changes: 5 additions & 0 deletions docs/darkseid/utils.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
:::darkseid.utils.get_recursive_filelist
:::darkseid.utils.list_to_string
:::darkseid.utils.remove_articles
:::darkseid.utils.unique_file
:::darkseid.utils.xlate
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{% include-markdown "../README.md" %}
35 changes: 0 additions & 35 deletions docs/make.bat

This file was deleted.

Empty file removed docs/source/__init__.py
Empty file.
58 changes: 0 additions & 58 deletions docs/source/conf.py

This file was deleted.

69 changes: 0 additions & 69 deletions docs/source/darkseid.rst

This file was deleted.

26 changes: 0 additions & 26 deletions docs/source/index.rst

This file was deleted.

7 changes: 0 additions & 7 deletions docs/source/modules.rst

This file was deleted.

Loading

0 comments on commit 107a4ac

Please sign in to comment.