master
Anton Lydike 2 years ago
parent 94d01a97d9
commit 87968d08d9

@ -34,7 +34,7 @@ jobs:
pip install --upgrade pip pip install --upgrade pip
- name: Install the package locally - name: Install the package locally
run: pip install -e . run: pip install -r requirements.txt -r requirements-dev.txt
- name: Test with pytest - name: Test with pytest
run: | run: |

@ -23,9 +23,14 @@ setuptools.setup(
"Operating System :: OS Independent", "Operating System :: OS Independent",
], ],
package_dir={"": "."}, package_dir={"": "."},
packages=["riscemu", "riscemu.decoder", "riscemu.instructions", "riscemu.IO", "riscemu.priv", "riscemu.types"], packages=[
"riscemu",
"riscemu.decoder",
"riscemu.instructions",
"riscemu.IO",
"riscemu.priv",
"riscemu.types",
],
python_requires=">=3.6", python_requires=">=3.6",
install_requires=[ install_requires=["pyelftools~=0.27"],
"pyelftools~=0.27" )
]
)

@ -18,37 +18,34 @@ import subprocess
# import sys # import sys
# sys.path.insert(0, os.path.abspath('.')) # sys.path.insert(0, os.path.abspath('.'))
if os.getenv('READTHEDOCS', False) and not os.path.exists('riscemu.rst'): if os.getenv("READTHEDOCS", False) and not os.path.exists("riscemu.rst"):
subprocess.check_call(['../../generate-docs.sh', 'generate']) subprocess.check_call(["../../generate-docs.sh", "generate"])
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = 'RiscEmu' project = "RiscEmu"
copyright = '2022, Anton Lydike' copyright = "2022, Anton Lydike"
author = 'Anton Lydike' author = "Anton Lydike"
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '2.0.0a2' release = "2.0.0a2"
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
# Add any Sphinx extension module names here, as strings. They can be # Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones. # ones.
extensions = [ extensions = ["sphinx.ext.autodoc", "recommonmark"]
'sphinx.ext.autodoc',
'recommonmark'
]
# autodoc options # autodoc options
autodoc_default_options = { autodoc_default_options = {
'members': True, "members": True,
'member-order': 'bysource', "member-order": "bysource",
'special-members': '__init__', "special-members": "__init__",
} }
# Add any paths that contain templates here, relative to this directory. # Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates'] templates_path = ["_templates"]
# List of patterns, relative to source directory, that match files and # List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files. # directories to ignore when looking for source files.
@ -58,10 +55,10 @@ templates_path = ['_templates']
from recommonmark.parser import CommonMarkParser from recommonmark.parser import CommonMarkParser
# The suffix of source filenames. # The suffix of source filenames.
source_suffix = ['.rst', '.md'] source_suffix = [".rst", ".md"]
source_parsers = { source_parsers = {
'.md': CommonMarkParser, ".md": CommonMarkParser,
} }
# -- Options for HTML output ------------------------------------------------- # -- Options for HTML output -------------------------------------------------
@ -69,18 +66,18 @@ source_parsers = {
# The theme to use for HTML and HTML Help pages. See the documentation for # The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes. # a list of builtin themes.
# #
html_theme = 'alabaster' html_theme = "alabaster"
pygments_style = 'sphinx' pygments_style = "sphinx"
# Add any paths that contain custom static files (such as style sheets) here, # Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files, # relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css". # so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static'] html_static_path = ["_static"]
sys.path.insert(0, os.path.abspath('../../')) sys.path.insert(0, os.path.abspath("../../"))
if os.getenv('READTHEDOCS', False): if os.getenv("READTHEDOCS", False):
import sphinx_rtd_theme import sphinx_rtd_theme
extensions.append("sphinx_rtd_theme") extensions.append("sphinx_rtd_theme")

Loading…
Cancel
Save