-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documentation config to build on readthedocs.org
- Loading branch information
Showing
10 changed files
with
53 additions
and
189 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
================= | ||
Change log | ||
================= | ||
|
||
TODO | ||
.. include:: ../CHANGELOG.md | ||
:parser: myst_parser.sphinx_ |
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,44 +1,20 @@ | ||
# 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 | ||
|
||
import os | ||
import sys | ||
|
||
# -- Project information ----------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information | ||
|
||
project = "ProteoBench" | ||
copyright = "2023, EuBIC-MS" | ||
author = "EuBIC-MS" | ||
description = "A Python-base platform for benchmarking data analysis in proteomics." | ||
|
||
# Add source folder to path for autodoc | ||
sys.path.insert(0, os.path.abspath("..")) | ||
|
||
# Add path for documentation including the main project path | ||
|
||
# -- General configuration --------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration | ||
|
||
extensions = [] | ||
|
||
templates_path = ["_templates"] | ||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] | ||
|
||
|
||
# -- 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"] | ||
|
||
extensions = [ | ||
"myst_parser", | ||
"sphinx.ext.napoleon", | ||
"sphinx.ext.autodoc", | ||
"sphinx.ext.autosummary", | ||
"sphinx.ext.viewcode", | ||
"sphinx.ext.todo", | ||
"sphinx.ext.githubpages", | ||
] | ||
|
||
source_suffix = [".rst"] | ||
master_doc = "index" | ||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] | ||
|
||
html_theme = "sphinx_rtd_theme" | ||
# html_static_path = ["_static"] |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[project] | ||
name = "proteobench" | ||
authors = [{name = "Robbin Bouwmeester", email = "[email protected]"}] | ||
authors = [ | ||
{ name = "Robbin Bouwmeester", email = "[email protected]" }, | ||
] # TODO: Add others | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
license = { file = "LICENSE" } | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Development Status :: 4 - Beta" | ||
] | ||
keywords=[ | ||
'proteomics', 'peptides', 'retention time', 'mass spectrometry' | ||
"Development Status :: 4 - Beta", | ||
] | ||
keywords = ['proteomics', 'peptides', 'retention time', 'mass spectrometry'] | ||
requires-python = ">=3.7" | ||
dynamic = ["version", "description"] | ||
dependencies = [ | ||
|
@@ -24,31 +24,17 @@ dependencies = [ | |
"streamlit-plotly-events", | ||
"matplotlib", | ||
"importlib-metadata; python_version < '3.8'", | ||
"toml" | ||
"toml", | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"black", | ||
] | ||
docs = [ | ||
"numpydoc>=1,<2", | ||
"recommonmark", | ||
"sphinx", | ||
"sphinx-autobuild", | ||
"sphinx-autodoc-typehints", | ||
"sphinx-mdinclude", | ||
"sphinx-rtd-theme", | ||
] | ||
web = [ | ||
"streamlit", | ||
"scipy" | ||
] | ||
dev = ["black"] | ||
docs = ["sphinx", "sphinx-rtd-theme", "sphinx-autobuild", "myst-parser"] | ||
web = ["streamlit", "scipy"] | ||
|
||
[project.urls] | ||
"Home" = "https://github.com/RobbinBouwmeester" | ||
"Homepage" = "https://github.com/RobbinBouwmeester/" | ||
"Bug Tracker" = "https://github.com/RobbinBouwmeester/" | ||
"Homepage" = "https://github.com/ProteoBench" | ||
"Bug Tracker" = "https://github.com/ProteoBench/ProteoBench/issues/" | ||
|
||
[build-system] | ||
requires = ["flit_core >=3.2,<4"] | ||
|