mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 05:40:25 +00:00
Merge pull request #363 from fladi/include_tests_in_source
Include the test suite in the sourcetarball but do not install it.
This commit is contained in:
commit
52ad8a0ace
2 changed files with 15 additions and 4 deletions
17
MANIFEST.in
17
MANIFEST.in
|
|
@ -1,6 +1,17 @@
|
|||
include AUTHORS
|
||||
include LICENSE
|
||||
include README.rst
|
||||
recursive-include docs *
|
||||
recursive-include imagekit/templates *
|
||||
prune tests
|
||||
include testrunner.py
|
||||
include tests/*.py
|
||||
include tests/assets/Lenna.png
|
||||
include tests/assets/lenna-*.jpg
|
||||
include tests/media/lenna.png
|
||||
prune tests/media/CACHE
|
||||
prune tests/media/b
|
||||
prune tests/media/photos
|
||||
include docs/Makefile
|
||||
include docs/conf.py
|
||||
include docs/make.bat
|
||||
include docs/*.rst
|
||||
recursive-include docs/_themes LICENSE README.rst flask_theme_support.py theme.conf *.css_t *.css *.html
|
||||
recursive-include imagekit/templates *.html
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -39,7 +39,7 @@ setup(
|
|||
maintainer_email='bryan@revyver.com',
|
||||
license='BSD',
|
||||
url='http://github.com/matthewwithanm/django-imagekit/',
|
||||
packages=find_packages(),
|
||||
packages=find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']),
|
||||
zip_safe=False,
|
||||
include_package_data=True,
|
||||
tests_require=[
|
||||
|
|
|
|||
Loading…
Reference in a new issue