From 2e4ec808411f02cc28fb03f79b98f21f5fb4afa0 Mon Sep 17 00:00:00 2001 From: mihsamusev Date: Fri, 18 Jun 2021 16:16:27 +0200 Subject: [PATCH 1/3] missing docs builder files --- docs/requirements.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 docs/requirements.txt diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 0000000..8085d79 --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1 @@ +myst-parser \ No newline at end of file From e6a91ded350a20f73b299fadd32c4becafe0eaaa Mon Sep 17 00:00:00 2001 From: mihsamusev Date: Fri, 18 Jun 2021 16:18:31 +0200 Subject: [PATCH 2/3] add readthedocs.yml --- .readthedocs.yml | 25 +++++++++++++++++++++++++ doc/LICENSE => LICENSE | 0 2 files changed, 25 insertions(+) create mode 100644 .readthedocs.yml rename doc/LICENSE => LICENSE (100%) diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 0000000..b7a30c9 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,25 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# Build documentation with MkDocs +#mkdocs: +# configuration: mkdocs.yml + +# Optionally build your docs in additional formats such as PDF and ePub +formats: all + +# Optionally set the version of Python and requirements required to build your docs +python: + version: 3.7 + install: + - requirements: docs/requirements.txt + - method: setuptools + path: . \ No newline at end of file diff --git a/doc/LICENSE b/LICENSE similarity index 100% rename from doc/LICENSE rename to LICENSE From 4ec5693e699c415117f6c2fe71f621e0e89d5347 Mon Sep 17 00:00:00 2001 From: mihsamusev Date: Fri, 18 Jun 2021 16:25:16 +0200 Subject: [PATCH 3/3] license crash --- LICENSE => docs/LICENSE | 0 setup.cfg | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename LICENSE => docs/LICENSE (100%) diff --git a/LICENSE b/docs/LICENSE similarity index 100% rename from LICENSE rename to docs/LICENSE diff --git a/setup.cfg b/setup.cfg index 716d140..21e6b4a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,7 +7,7 @@ description = Python utility functions library for UPPAAL Stratego long_description = file: README.md keywords= uppaal, stratego, MPC license = MIT -license_file = doc/LICENSE +license_file = docs/LICENSE long_description_content_type = text/markdown project_urls = Source = https://github.com/mihsamusev/strategoutil