forked from pielgrzym/django-imaging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1001 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
33
import os
from setuptools import setup, find_packages
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
pass
setup(
name = "django-imaging",
version = "1.0.0",
author = "Jakub Nawalaniec",
author_email = "[email protected]",
description = ("AJAX driven gallery field for django"),
license = "GNU GPL v2",
keywords = "django",
url = "https://github.com/pielgrzym/django-imaging",
packages = find_packages(),
zip_safe = False,
include_package_data=True,
long_description = read("README.txt"),
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Django",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
],
install_requires = [
'django>=1.2',
'Pillow',
'django-imagekit>=1.0',
]
)