mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-16 13:47:20 -04:00
f2a817dd7c
SQLAlchemy does not want to opt-in to pep-517 at this time as this would require a custom build backend interface which we have not built yet, and the standard is not widely adopted at this time in any case. Per [1] [2], the presence of this file indicates a positive opt-in to pep-517, so it must be omitted from source distributions. [1] https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support [2] https://www.python.org/dev/peps/pep-0517/#id5 Fixes: #5207 Change-Id: If8d26a9edf942047920d273d8be778df7a018b3e
18 lines
543 B
Plaintext
18 lines
543 B
Plaintext
# any kind of "*" pulls in __init__.pyc files,
|
|
# so all extensions are explicit.
|
|
|
|
recursive-include doc *.html *.css *.txt *.js *.png *.py Makefile *.rst *.sty
|
|
recursive-include examples *.py *.xml
|
|
recursive-include test *.py *.dat
|
|
|
|
# include the c extensions, which otherwise
|
|
# don't come in if --with-cextensions isn't specified.
|
|
recursive-include lib *.c *.txt
|
|
|
|
include README* AUTHORS LICENSE CHANGES* tox.ini
|
|
prune doc/build/output
|
|
|
|
# don't include pyproject.toml until we
|
|
# have explicitly built a pep-517 backend
|
|
exclude pyproject.toml
|