Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Host docs to readthedocs #14

Merged
merged 13 commits into from
Jun 25, 2024
Prev Previous commit
Next Next commit
#10 fix conflicting optional dependencies
  • Loading branch information
arjxn-py committed Jun 25, 2024
commit 2553b11ec1878072dfed24ea2f6e635ebc8dea08
16 changes: 7 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ dev = [
"pytest-html",
"pytest-cov",
]
docs = [
# Sphinx extensions
"autodoc",
"mathjax",
# Third-party extensions
"myst-parser",
]

[tools.setuptools]
packages = [
Expand All @@ -27,12 +34,3 @@ packages = [
[tool.setuptools.dynamic]
version = {attr = "pbeis.version.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}

[project.optional-dependencies]
docs = [
# Sphinx extensions
"autodoc",
"mathjax",
# Third-party extensions
"myst_parser",
]