-
Notifications
You must be signed in to change notification settings - Fork 305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove setup.py #757
Remove setup.py #757
Conversation
tox.ini
Outdated
@@ -100,7 +96,8 @@ setenv = | |||
TWINE_USERNAME = {env:TWINE_USERNAME:__token__} | |||
commands = | |||
python -c "import path; path.Path('dist').rmtree_p()" | |||
python -m pep517.build . | |||
python -m build | |||
python -m twine check --strict dist/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, In jaraco/skeleton, the fidelity of the readme is checked prior to release (as part of the test suite run) using pytest-checkdocs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And if it's broken by a PR sent by someone it needs to be fixed in a new PR. Which can't be done prior to a release. So we're wasting release manager cycles by pushing this until then and not checking it in a PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
Now that
pip
supports editable installs with only setup.cfg files, andsetuptools_scm
recommendspyproject.toml
, this seemed like a reasonable bit of housekeeping.Also referenced https://setuptools.readthedocs.io/en/latest/userguide/quickstart.html#basic-use.