mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-12 02:27:28 -08:00
Link to GitHub issues, pull requests, commits and users for a particular project. Required to build the docs for jupyter_core. It's called 'alt' because sphinxcontrib-github already exists. IPython & Jupyter projects have been using the syntax defined in this extension for some time before this made it into its own package. Closes: https://bugs.gentoo.org/637990 Closes: https://bugs.gentoo.org/638200 Closes: https://github.com/gentoo/gentoo/pull/6246 Package-Manager: Portage-2.3.13, Repoman-2.3.3
20 lines
598 B
Diff
20 lines
598 B
Diff
setup.py for sphinxcontrib_github_alt by Marius Brehler <marbre@linux.sungazer.de>.
|
|
|
|
Patch by Marius Brehler <marbrbre@linux.sungazer.de>.
|
|
--- /dev/null
|
|
+++ b/setup.py
|
|
@@ -0,0 +1,12 @@
|
|
+from distutils.core import setup
|
|
+
|
|
+setup(name='sphinxcontrib_github_alt',
|
|
+ version='1.0',
|
|
+ author='Jupyter Development Team',
|
|
+ author_email='jupyter@googlegroups.com',
|
|
+ url='https://github.com/jupyter/sphinxcontrib_github_alt',
|
|
+ packages=['sphinxcontrib_github_alt'],
|
|
+ classifiers=[
|
|
+ 'License :: OSI Approved :: BSD License'
|
|
+ ]
|
|
+)
|
|
\ No newline at end of file
|