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 c54025f commit 6e25119Copy full SHA for 6e25119
content/packaging.rst
@@ -101,12 +101,12 @@ To make our example package pip-installable we need to add one more file:
101
│ └── subtracting.py
102
├── LICENSE
103
├── README.md
104
- └── setup.py
+ └── pyproject.toml
105
106
-This is how ``setup.py`` looks:
+This is how ``pyproject.toml`` looks:
107
108
-.. literalinclude:: packaging-example-project/setup.py
109
- :caption: setup.py
+.. literalinclude:: packaging-example-project/pyproject.toml
+ :caption: pyproject.toml
110
:emphasize-lines: 18-20
111
112
Note how our package requires ``scipy`` and we decided to not pin the version
0 commit comments