This repository was archived by the owner on May 5, 2023. It is now read-only.
File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 73
73
),
74
74
}
75
75
76
+ intersphinx_mapping = {
77
+ 'pypa-build' : ('https://pypa-build.readthedocs.io/en/latest/' , None )
78
+ }
76
79
77
80
# Add support for linking usernames
78
81
github_url = 'https://github.com'
79
82
github_sponsors_url = f'{ github_url } /sponsors'
80
83
extlinks = {
81
84
'user' : (f'{ github_sponsors_url } /%s' , '@' ), # noqa: WPS323
82
85
}
83
- extensions += ['sphinx.ext.extlinks' ]
86
+ extensions += ['sphinx.ext.extlinks' , 'sphinx.ext.intersphinx' ]
84
87
85
88
# Be strict about any broken references:
86
89
nitpicky = True
Original file line number Diff line number Diff line change @@ -59,11 +59,11 @@ This is what your project would look like::
59
59
setup.cfg
60
60
mypackage/__init__.py
61
61
62
- Then, you need an installer, such as ` pep517 < https://pypi.org/project/pep517/ >`_
63
- which you can obtain via ``pip install pep517 ``. After downloading it, invoke
62
+ Then, you need an installer, such as :std:doc: ` PyPA build < pypa-build:index >`
63
+ which you can obtain via ``pip install build ``. After downloading it, invoke
64
64
the installer::
65
65
66
- python -m pep517. build .
66
+ python -m build
67
67
68
68
You now have your distribution ready (e.g. a ``tar.gz `` file and a ``.whl ``
69
69
file in the ``dist `` directory), which you can upload to PyPI!
You can’t perform that action at this time.
0 commit comments