-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
191 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,47 @@ | ||
# import os | ||
# import sys | ||
# import sphinx_rtd_theme | ||
# Configuration file for the Sphinx documentation builder. | ||
# | ||
# For the full list of built-in configuration values, see the documentation: | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html | ||
|
||
# sys.path.insert(0, os.path.abspath('..')) | ||
# -- Project information ----------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information | ||
|
||
extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon", "sphinx_rtd_theme"] | ||
import os | ||
import sys | ||
import sphinx_rtd_theme | ||
|
||
# This is to prevent mypy from declaring sphinx_rtd_theme as a missing import. | ||
sphinx_rtd_theme | ||
|
||
sys.path.insert(0, os.path.abspath("..")) | ||
|
||
project = "evalquiz-material-server" | ||
copyright = "2023, Author" | ||
author = "Author" | ||
|
||
# -- General configuration --------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration | ||
|
||
extensions = [ | ||
"sphinx.ext.autodoc", | ||
"sphinx.ext.viewcode", | ||
"sphinx.ext.todo", | ||
"sphinx.ext.napoleon", | ||
"sphinx_rtd_theme", | ||
] | ||
|
||
templates_path = ["_templates"] | ||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] | ||
|
||
language = "en" | ||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output | ||
|
||
html_theme = "sphinx_rtd_theme" | ||
html_static_path = ["_static"] | ||
|
||
# -- Options for todo extension ---------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/extensions/todo.html#configuration | ||
|
||
todo_include_todos = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
evalquiz\_proto package | ||
======================= | ||
|
||
Subpackages | ||
----------- | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
evalquiz_proto.shared | ||
evalquiz_proto.tests | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: evalquiz_proto | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
evalquiz\_proto.shared.generated package | ||
======================================== | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: evalquiz_proto.shared.generated | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
evalquiz\_proto.shared package | ||
============================== | ||
|
||
Subpackages | ||
----------- | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
evalquiz_proto.shared.generated | ||
|
||
Submodules | ||
---------- | ||
|
||
evalquiz\_proto.shared.exceptions module | ||
---------------------------------------- | ||
|
||
.. automodule:: evalquiz_proto.shared.exceptions | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
evalquiz\_proto.shared.internal\_lecture\_material module | ||
--------------------------------------------------------- | ||
|
||
.. automodule:: evalquiz_proto.shared.internal_lecture_material | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
evalquiz\_proto.shared.mimetype\_resolver module | ||
------------------------------------------------ | ||
|
||
.. automodule:: evalquiz_proto.shared.mimetype_resolver | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
evalquiz\_proto.shared.path\_dictionary\_controller module | ||
---------------------------------------------------------- | ||
|
||
.. automodule:: evalquiz_proto.shared.path_dictionary_controller | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: evalquiz_proto.shared | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
evalquiz\_proto.tests package | ||
============================= | ||
|
||
Subpackages | ||
----------- | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
evalquiz_proto.tests.shared | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: evalquiz_proto.tests | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
evalquiz\_proto.tests.shared package | ||
==================================== | ||
|
||
Submodules | ||
---------- | ||
|
||
evalquiz\_proto.tests.shared.test\_internal\_lecture\_material module | ||
--------------------------------------------------------------------- | ||
|
||
.. automodule:: evalquiz_proto.tests.shared.test_internal_lecture_material | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: evalquiz_proto.tests.shared | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,22 @@ | ||
Welcome to the Evalquiz documentation! | ||
====================================== | ||
.. evalquiz-material-server documentation master file, created by | ||
sphinx-quickstart on Thu Sep 21 09:12:24 2023. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
Welcome to evalquiz-material-server's documentation! | ||
==================================================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:maxdepth: 4 | ||
:caption: Contents: | ||
|
||
evalquiz_material_server | ||
evalquiz_proto | ||
|
||
|
||
Indices and tables | ||
================== | ||
|
||
modules | ||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,5 @@ jsonpickle | |
schedule | ||
sphinx | ||
sphinx_rtd_theme | ||
pymongo | ||
pymongo | ||
setuptools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
import pathlib | ||
import pkg_resources | ||
from setuptools import setup | ||
|
||
with pathlib.Path("requirements.txt").open() as requirements_txt: | ||
install_requires = [ | ||
str(requirement) | ||
for requirement in pkg_resources.parse_requirements(requirements_txt) | ||
] | ||
|
||
from distutils.core import setup | ||
|
||
setup( | ||
name="Evalquiz Material Server", | ||
name="evalquiz_material_server", | ||
version="1.0", | ||
author_email="st170001@stud.uni-stuttgart.de", | ||
packages=["evalquiz_pipeline_server"], | ||
packages=["evalquiz_material_server"], | ||
install_requires=install_requires, | ||
) |