-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
25 lines (23 loc) · 823 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
from setuptools import setup
setup(
name='django-imagekit-cropper',
version='1.18',
author='Nina Pavlich',
author_email='[email protected]',
url='https://github.com/ninapavlich/django-imagekit-cropper',
license="MIT",
description='Allow users to manually specify image variant crops',
keywords=['libraries', 'web development', 'cms', 'django', 'django-grappelli'],
include_package_data=True,
packages=['imagekit_cropper'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python'
]
)