-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using setup.py is no longer recommended by setuptools. Instead, projects should use build: https://github.com/pypa/build. Invoking build will create a source and wheel distribution https://pypa-build.readthedocs.io/en/latest/: > By default, a source distribution (sdist) is built from {srcdir} and a > binary distribution (wheel) is built from the sdist. See the setuptools quickstart guides for more information: https://setuptools.pypa.io/en/latest/userguide/quickstart.html > Instead, when creating new Python packages, it is recommended to use a > command line tool called build. This tool will automatically download > setuptools and any other build-time dependencies that your project > might have. You just need to specify them in a pyproject.toml file at > the root of your package, as indicated in the following section.
- Loading branch information
Showing
6 changed files
with
10 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,5 +19,4 @@ repos: | |
args: ["--strict"] | ||
additional_dependencies: [ | ||
"pytest==6.2.5", | ||
"types-setuptools==57.4.2", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters