- __init__.py added to all folders - preparing docs - .gitignore updated - .vscode/settings.json updated - mypy.ini updated - pyproject.toml updated - plansandideas/Coding optimization plan.md added - plansandideas/REORGANIZATION.md added - scripts/lint.py added - scripts/setup_dev.py added - requirements-dev.txt added - and more.
23 lines
519 B
Python
23 lines
519 B
Python
""" Configuration file for Sphinx documentation"""
|
|
|
|
PROJECT = "sandpypi"
|
|
COPYRIGHT = "2024, stan44"
|
|
AUTHOR = "stan44"
|
|
VERSION = "0.1.0"
|
|
RELEASE = "0.1.0"
|
|
|
|
extensions = [
|
|
"sphinx.ext.autodoc",
|
|
"sphinx.ext.napoleon",
|
|
"sphinx.ext.viewcode",
|
|
"sphinx.ext.githubpages",
|
|
"sphinx_rtd_theme",
|
|
]
|
|
|
|
templates_path = ["_templates"]
|
|
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
|
|
|
HTML_THEME = "sphinx_rtd_theme"
|
|
html_static_path = ["_static"]
|
|
# html_logo = "_static/logo.png" # Add your project's logo
|