diff --git a/.readthedocs.yml b/.readthedocs.yml deleted file mode 100644 index 7e49657..0000000 --- a/.readthedocs.yml +++ /dev/null @@ -1,18 +0,0 @@ -# Read the Docs configuration file -# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details - -version: 2 - -build: - os: ubuntu-22.04 - tools: - python: "3.11" -sphinx: - configuration: docs/conf.py - -python: - install: - - method: pip - path: . - extra_requirements: - - docs diff --git a/docs/conf.py b/docs/conf.py deleted file mode 100644 index 049c888..0000000 --- a/docs/conf.py +++ /dev/null @@ -1,45 +0,0 @@ -from __future__ import annotations - -import importlib.metadata - -project = "kaitai_awkward_runtime" -copyright = "2023, Manasvi" -author = "Manasvi" -version = release = importlib.metadata.version("kaitai_awkward_runtime") - -extensions = [ - "myst_parser", - "sphinx.ext.autodoc", - "sphinx.ext.intersphinx", - "sphinx.ext.mathjax", - "sphinx.ext.napoleon", - "sphinx_autodoc_typehints", - "sphinx_copybutton", -] - -source_suffix = [".rst", ".md"] -exclude_patterns = [ - "_build", - "**.ipynb_checkpoints", - "Thumbs.db", - ".DS_Store", - ".env", - ".venv", -] - -html_theme = "furo" - -myst_enable_extensions = [ - "colon_fence", -] - -intersphinx_mapping = { - "python": ("https://docs.python.org/3", None), -} - -nitpick_ignore = [ - ("py:class", "_io.StringIO"), - ("py:class", "_io.BytesIO"), -] - -always_document_param_types = True diff --git a/docs/index.md b/docs/index.md deleted file mode 100644 index a69a81a..0000000 --- a/docs/index.md +++ /dev/null @@ -1,17 +0,0 @@ -# kaitai_awkward_runtime - -```{toctree} -:maxdepth: 2 -:hidden: - -``` - -```{include} ../README.md -:start-after: -``` - -## Indices and tables - -- {ref}`genindex` -- {ref}`modindex` -- {ref}`search` diff --git a/tests/test_compiled.py b/tests/test_compiled.py deleted file mode 100644 index c016989..0000000 --- a/tests/test_compiled.py +++ /dev/null @@ -1,11 +0,0 @@ -from __future__ import annotations - -import kaitai_awkward_runtime._core as m - - -def test_add(): - assert m.add(2, 3) == 5 - - -def test_subtract(): - assert m.subtract(7, 5) == 2 diff --git a/tests/test_package.py b/tests/test_package.py deleted file mode 100644 index 7e5c10c..0000000 --- a/tests/test_package.py +++ /dev/null @@ -1,9 +0,0 @@ -from __future__ import annotations - -import importlib.metadata - -import kaitai_awkward_runtime as m - - -def test_version(): - assert importlib.metadata.version("kaitai_awkward_runtime") == m.__version__