-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
32 lines (31 loc) · 1006 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from distutils.core import setup
import os
setup(
name = 'django_cropper',
packages = ['cropper'],
package_dir = {
'cropper': 'cropper'
},
package_data = {
'cropper': ['templates/cropper/*.html']
},
version = '0.1.5a',
description = 'Image cropping for the Django admin',
author = 'Simon Willison',
author_email = '[email protected]',
url = 'http://github.com/simonw/django_cropper',
keywords = ['pil', 'django', 'cropping', 'image'],
classifiers = [
'Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Django',
'Topic :: Multimedia :: Graphics',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
long_description = open(
os.path.join(os.path.dirname(__file__), 'README.txt')
).read().strip(),
)