diff --git a/doc/conf.py b/doc/conf.py index 80d51a4..3695288 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -11,7 +11,7 @@ import os import sys -sys.path.insert(0, os.path.abspath(".")) +sys.path.insert(0, os.path.abspath("..")) # modules that autodock should mock # useful if some external dependencies are not satisfied at doc build time. autodoc_mock_imports = [] @@ -50,8 +50,11 @@ "sphinx.ext.autosummary", "sphinx_copybutton", "myst_parser", + "autoapi.extension", ] +autoapi_dirs = ["../src"] + autosummary_generate = True # intersphinx_mapping = {'clorm': ('https://clorm.readthedocs.io/en/latest/', None)} diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..04c0465 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,10 @@ +[metadata] +name = clingexplaid +version = 1.1.0 +author = Hannes Weichelt +author_email = hweichelt@uni-potsdam.de +description = API to aid the development of explanation systems using clingo +long_description = file: README.md +long_description_content_type = text/markdown +license = MIT +url = https://github.com/potassco/clingo-explaid