Skip to content

Commit

Permalink
Upgrade setup.py to use setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
SmileyChris committed Aug 7, 2013
1 parent 4ba5d5f commit bbba52b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ include LICENSE
include AUTHORS
include README.rst
include CHANGES.rst
recursive-include docs *
graft docs
prune docs/_build
13 changes: 3 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
from distutils.core import setup
from setuptools import setup, find_packages
import easy_thumbnails


Expand All @@ -26,15 +26,8 @@ def read_files(*filenames):
author='Chris Beaven',
author_email='[email protected]',
platforms=['any'],
packages=[
'easy_thumbnails',
'easy_thumbnails.management',
'easy_thumbnails.management.commands',
'easy_thumbnails.migrations',
'easy_thumbnails.templatetags',
'easy_thumbnails.tests',
],
package_data={'easy_thumbnails': ['docs/*', 'docs/ref/*.rst']},
packages=find_packages(),
include_package_data=True,
install_requires=[
'django>=1.4',
'pillow',
Expand Down

0 comments on commit bbba52b

Please sign in to comment.