Skip to content

Commit

Permalink
Remove django_tests from the package
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Nov 9, 2016
1 parent 190c73f commit 4010cb5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1,4 +1,4 @@
include *.txt
recursive-include cloudinary/templates *.html
recursive-include cloudinary/static *.html *.js

prune django_tests
1 change: 1 addition & 0 deletions cloudinary.egg-info/SOURCES.txt
Expand Up @@ -13,6 +13,7 @@ cloudinary.egg-info/PKG-INFO
cloudinary.egg-info/SOURCES.txt
cloudinary.egg-info/dependency_links.txt
cloudinary.egg-info/not-zip-safe
cloudinary.egg-info/requires.txt
cloudinary.egg-info/top_level.txt
cloudinary/poster/__init__.py
cloudinary/poster/encode.py
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -11,7 +11,7 @@
author_email='info@cloudinary.com',
url='http://cloudinary.com',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'django_tests']),
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'django_tests', 'django_tests.*']),
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
Expand All @@ -23,6 +23,7 @@
zip_safe=False,
test_suite="tests",
install_requires=[
"six",
"urllib3"
],
)

0 comments on commit 4010cb5

Please sign in to comment.