-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from zfit/docs_update
add simple docs and cleanup
- Loading branch information
Showing
38 changed files
with
378 additions
and
252 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 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,23 @@ | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.12" | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
formats: [ ] | ||
|
||
python: | ||
install: | ||
- requirements: requirements_dev.txt | ||
- requirements: requirements.txt | ||
- method: pip | ||
path: . |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright (c) 2022 zfit | ||
*/ | ||
|
||
/*pydata-sphinx-theme provides some css variables for customizing the look of the theme.*/ | ||
/*See a list of supported css variables at*/ | ||
/*https://github.com/pydata/pydata-sphinx-theme/blob/master/pydata_sphinx_theme/static/css/theme.css*/ | ||
html[data-theme="light"] { | ||
/*--pst-color-primary: #080c80 !important;*/ | ||
--pst-color-primary: #D35827; | ||
--pst-color-secondary: #27bcd3; | ||
--pst-color-inline-code: #1d54e2; | ||
/*--pst-color-target: yellow;*/ | ||
|
||
|
||
/*Here we use css directly because for these attributes there exist no css variables defined by pydata-sphinx-theme.*/ | ||
/*See https://github.com/pydata/pydata-sphinx-theme/issues/353 for possible changes in the future.*/ | ||
|
||
--pst-color-navbar-link: 255, 255, 255; | ||
--pst-color-navbar-link-hover: 203, 86, 40; | ||
--pst-color-navbar-link-active: 203, 86, 40; | ||
} | ||
|
||
html[data-theme="dark"] { | ||
/*--pst-color-primary: #080c80 !important;*/ | ||
--pst-color-primary: #D35827; | ||
--pst-color-secondary: #27bcd3; | ||
--pst-color-inline-code: #1d54e2; | ||
/*--pst-color-target: yellow;*/ | ||
|
||
--pst-color-navbar-link: 255, 255, 255; | ||
--pst-color-navbar-link-hover: 203, 86, 40; | ||
--pst-color-navbar-link-active: 203, 86, 40; | ||
} | ||
|
||
i.fa-github-square:before { | ||
color: #ffffffff !important; | ||
} |
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,7 @@ | ||
=== | ||
|
||
.. automodule:: zfit_physics.pdf | ||
: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
Oops, something went wrong.