We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1edfb1c commit b1c6eabCopy full SHA for b1c6eab
3 files changed
.gitignore
@@ -24,6 +24,7 @@ wheels/
24
*.egg-info/
25
.installed.cfg
26
*.egg
27
+arrayutils.md
28
29
# PyInstaller
30
# Usually these files are written by a python script from a template
docs/generating-docs.md
@@ -0,0 +1,8 @@
1
+# Generating docs
2
+
3
+This is just a helper file to explain how to generate docs.
4
5
+1. `pydoc-markdown -I arrayutils -m Arr --render-toc > arrayutils.md`
6
+2. Copy/paste docs into README
7
+3. Replace `#__init__.Arr.` with `#usage.`
8
+4. Remove some of the extraneous elements at the top.
docs/publishing.md
@@ -0,0 +1,6 @@
+# Publishing
+This is just a helper doc with info on publishing to pypi.org.
+1. `python -m build`
+2. `python -m twine upload --repository pypi dist/*`
0 commit comments