We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64f7ca9 commit 38345a0Copy full SHA for 38345a0
.gitignore
@@ -1,5 +1,7 @@
1
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
3
+/dist
4
+
5
# dependencies
6
/node_modules
7
/.pnp
requirements-dev.txt
@@ -0,0 +1 @@
+gitpython>=3.1.30
utils/get_docs.py
@@ -0,0 +1,9 @@
+import git
+import os
+PYGAME_GIT_URL = "https://github.com/pygame-community/pygame-ce.git"
+# git.Repo.clone_from(PYGAME_GIT_URL, "dist")
8
+os.chdir(os.path.join(os.getcwd(), "pygame"))
9
+os.system("python setup.py docs")
0 commit comments