-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 682 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name="django-imperavi-widget",
version="0.0.3",
author="Zaytsev Dmitriy",
author_email="zaytsev_dmitriy@aol.com",
packages=find_packages(),
include_package_data=True,
description="A django admin widget to render a \
text field as beautiful Imperavi WYSIWYG editor http://redactorjs.com/",
long_description=open('README.md', 'r').read(),
license="MIT License",
keywords="django admin imperavi widget",
platforms=['any'],
install_requires=[
"sorl-thumbnail >= 11.12",
"pillow >= 4.1.1",
],
url="https://github.com/dzaytsev91/django-imperavi-widget",
)