forked from cloudinary/pycloudinary
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove django_tests from the package
- Loading branch information
Amir Tocker
committed
Nov 9, 2016
1 parent
190c73f
commit 4010cb5
Showing
3 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include *.txt | ||
recursive-include cloudinary/templates *.html | ||
recursive-include cloudinary/static *.html *.js | ||
|
||
prune django_tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
author_email='[email protected]', | ||
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", | ||
|
@@ -23,6 +23,7 @@ | |
zip_safe=False, | ||
test_suite="tests", | ||
install_requires=[ | ||
"six", | ||
"urllib3" | ||
], | ||
) |