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/docs/LICENSE similarity index 100% rename from doc/LICENSE rename to docs/LICENSE 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 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