-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Running sphinx-apidoc equivalent #185
Comments
I don't think you should have to modify |
Hi thanks for the tip! Switching from It seems that for other venv managers (like pipenv) some extra configuration is required to get |
As a sidenote, any recommendations on how to get |
Yeah pipenv manages your virtualenv but I think you still need to set up your package whereas poetry is fully package-oriented and manages the virtualenv as part of setting up everything for developing, building and publishing the package. Also readthedocs.org does require a conf.py so it's not currently supported. For most projects GitHub Pages should be a lot easier to set up anyway. Just run |
As a rough idea maybe allow a command like (similar to original sphinx-apidoc syntax):
Also when running
That would be a very cool way develop drop-in documentation for Python projects, maybe even for mudkip itself. |
Here is a discusssion of similar usecase https://stackoverflow.com/questions/29385564/customize-templates-for-sphinx-apidoc/42739816. I second impression that modules/submodules of sphinx-apidoc is a bit too complex, usualli takes time to edit and remeber in frustartion which is a better way. I like the idea (but not an implementation) of https://github.com/goerz/better-apidoc |
For me personally an ideal behaviour if Drop in behaviour for apis best seen I think in https://github.com/pdoc3/ great if mudkip can replicate of surpass that in easiness. Goog looking API section: https://pandas.pydata.org/pandas-docs/stable/reference/index.html# |
Hi! Currently playing around with mudkip with the hope of using the tool for documenting my projects going forward.
I was wondering how to invoke the autodoc extension using mudkip. In my current sphinx setup, I run the
sphinx-apidoc
command, which automatically generates the.rst
files for my modules and I would like to recover this behavior with mudkip.I tried running
sphinx-apidoc
separately beforemudkip develop
, but then I get some import errors (those are fixed in my current setup by modifying thesys.path
variable inconf.py
).Thanks!
The text was updated successfully, but these errors were encountered: