forked from jazzband/django-tinymce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·63 lines (56 loc) · 1.96 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# from distutils.core import setup
from setuptools import setup, find_packages
import metadata
app_name = metadata.name
version = metadata.version
setup(
name = "django-%s" % app_name,
version = version,
# packages = [app_name, '%s.templatetags' % app_name, 'testtinymce'],
packages = find_packages(),
include_package_data = True,
#package_data = {
# app_name: [
#'templates/tinymce/*',
# 'media/*',
#'media/tiny_mce/*/*/*/*',
#'media/tiny_mce/*/*/*',
#'media/tiny_mce/*/*',
#'media/tiny_mce/*',
# ],
# 'testtinymce': ['templates/flatpages/*', 'testapp/*']
# },
author = "Joost Cassee",
author_email = "[email protected]",
description = "A Django application that contains a widget to render a" \
" form field as a TinyMCE editor.",
long_description = \
"""
Use the TinyMCE editor for your form textareas.
Features:
* Use as a form widget or with a view.
* Enhanced support for content languages.
* Integration with the TinyMCE spellchecker.
* Enables predefined link and image lists for dialogs.
* Can compress the TinyMCE javascript files.
* Integration with django-filebrowser.
""",
license = "MIT License",
keywords = "django widget tinymce",
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms = ['any'],
url = "http://code.google.com/p/django-%s/" % app_name,
download_url = "http://code.google.com/p/django-%s/downloads/list" \
% app_name,
)