mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-24 09:31:48 -04:00
69273bef0a
Warnings are generated during setup.py install such as:
```
Getting distribution for 'SQLAlchemy==1.2.15'.
warning: no files found matching '*.jpg' under directory 'doc'
warning: no files found matching '*.mako' under directory 'doc'
warning: no files found matching 'distribute_setup.py'
warning: no files found matching 'sa2to3.py'
warning: no files found matching 'ez_setup.py'
```
This change removes those expressions from MANIFEST.in.
Closes: #4408
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/4408
Pull-request-sha: 448b3a9dc8
Change-Id: Id6373611fb384e230427f87b9e75672d78483000
14 lines
450 B
Plaintext
14 lines
450 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 sqla_nose.py CHANGES* tox.ini
|
|
prune doc/build/output
|