Skip to content

Commit be3c043

Browse files
committed
added progressbar to requirements
1 parent 0bd150d commit be3c043

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def run(self):
2222

2323
setup(
2424
name='django-stdimage',
25-
version='1.0.5',
25+
version='1.0.6',
2626
description='Django Standarized Image Field',
2727
author='codingjoe',
2828
url='https://github.com/codingjoe/django-stdimage',
@@ -43,15 +43,17 @@ def run(self):
4343
'Programming Language :: Python :: 3.2',
4444
'Programming Language :: Python :: 3.3',
4545
],
46-
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
46+
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests", ".egg-info"]),
4747
include_package_data=True,
4848
requires=[
4949
'Django (>=1.5)',
5050
'Pillow (>=2.5)',
51+
'progressbar (==2.2)',
5152
],
5253
install_requires=[
5354
'django>=1.5',
5455
'pillow>=2.5',
56+
'progressbar==2.2',
5557
],
5658
cmdclass={'test': PyTest},
5759
)

0 commit comments

Comments
 (0)