Files
sqlalchemy/MANIFEST.in
Mike Bayer 238a4b3bbe add noxfile.py to MANIFEST
this is still how we get the files to include in a build
so it has to be there

Change-Id: Ie43ed43a7f9c4c5d3d85c76a1fcf2a4737d6dbc4
2025-10-20 12:25:47 -04:00

20 lines
679 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 *.testpatch
recursive-include tools *.py
# for some reason in some environments stale Cython .c files
# are being pulled in, these should never be in a dist
exclude lib/sqlalchemy/**/*.c
exclude lib/sqlalchemy/**/*.so
# include the pxd extensions, which otherwise
# don't come in if --with-cextensions isn't specified.
recursive-include lib *.pxd *.txt *.typed
include README* AUTHORS LICENSE CHANGES* tox.ini noxfile.py
prune doc/build/output