Skip to content

Commit 4010cb5

Browse files
author
Amir Tocker
committed
Remove django_tests from the package
1 parent 190c73f commit 4010cb5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
include *.txt
22
recursive-include cloudinary/templates *.html
33
recursive-include cloudinary/static *.html *.js
4-
4+
prune django_tests

cloudinary.egg-info/SOURCES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ cloudinary.egg-info/PKG-INFO
1313
cloudinary.egg-info/SOURCES.txt
1414
cloudinary.egg-info/dependency_links.txt
1515
cloudinary.egg-info/not-zip-safe
16+
cloudinary.egg-info/requires.txt
1617
cloudinary.egg-info/top_level.txt
1718
cloudinary/poster/__init__.py
1819
cloudinary/poster/encode.py

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
author_email='[email protected]',
1212
url='http://cloudinary.com',
1313
license='MIT',
14-
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'django_tests']),
14+
packages=find_packages(exclude=['ez_setup', 'examples', 'tests', 'django_tests', 'django_tests.*']),
1515
classifiers=[
1616
"License :: OSI Approved :: MIT License",
1717
"Programming Language :: Python",
@@ -23,6 +23,7 @@
2323
zip_safe=False,
2424
test_suite="tests",
2525
install_requires=[
26+
"six",
2627
"urllib3"
2728
],
2829
)

0 commit comments

Comments
 (0)