-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 756 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 756 Bytes
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
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
VERSION = __import__('coop_html_editor').__version__
setup(
name='coop_html_editor',
version=VERSION,
description='integration for Inline HTML editor',
packages=find_packages(),
include_package_data=True,
author='Luc Jean',
author_email='ljean@apidev.fr',
license='BSD',
long_description=open('README.rst').read(),
url="https://github.com/ljean/coop_html_editor/",
download_url="https://github.com/ljean/coop_html_editor/tarball/master",
zip_safe=False,
install_requires=['apidev_django-floppyforms', ],
)