forked from zedr/django-flatpages-tinymce
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·34 lines (31 loc) · 1.14 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
#!/usr/bin/env python
import os,sys
from setuptools import setup, find_packages
version = "0.1.2"
long_description = open('README.rst').read()
setup(name='django-flatpages-tinymce',
version=version,
description="HTML editor on django.contrib.flatpages",
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Natural Language :: Russian',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
keywords='flatpages tinymce WYSIWYG',
author='McLaud Jr',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
include_package_data=True,
requires = ['django_tinymce (>=1.5)', 'Django (>=1.9)'],
entry_points={},
zip_safe=False)