This repository has been archived by the owner on Oct 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
58 lines (51 loc) · 1.78 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
#!/usr/bin/env python
import os
from codecs import open
from setuptools import setup
import metadata
app_name = metadata.name
version = metadata.version
this_dir = os.path.dirname(os.path.abspath(__file__))
def read(filename):
with open(filename, encoding='utf-8') as fo:
return fo.read()
long_description = read('README.rst') + '\n\n' + \
read(os.path.join(this_dir, 'Changelog.rst'))
setup(
name='django-{0}'.format(app_name),
version=version,
packages=['tinymce'],
include_package_data=True,
author='Roman Miroshnychenko (fork author)',
author_email='[email protected]',
description='A Django application that provides '
'a fully functional TinyMCE 4 editor widget for models and forms.',
long_description=long_description,
license='MIT License',
keywords='django wysiwyg editor 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',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms=['any'],
url='https://github.com/romanvm/django-tinymce4-lite',
install_requires=[
'Django>=1.11',
'jsmin',
],
zip_safe=False
)