-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (27 loc) · 890 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
#!/usr/bin/env python
# -*- 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__('djaloha').__version__
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='Djaloha',
version = VERSION,
description='Django integration for aloha HTML5 editor',
packages=['djaloha','djaloha.templatetags'],
include_package_data=True,
author='Luc Jean',
author_email='[email protected]',
license='BSD',
#long_description=read('README.txt'),
#download_url = "https://github.com/quinode/djaloha/tarball/%s" % (VERSION),
#download_url='git://github.com/quinode/djaloha.git',
zip_safe=False,
install_requires = ['django-floppyforms==0.4.7',]
)