-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
65 lines (52 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
59
60
61
62
63
64
65
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages, setup
from tinymce_4 import __version__
AUTHOR = 'Petr Zelenin, Arkadiy Zamaraev, Nikita Shalakov'
DESCRIPTION = 'Integrate TinyMCE 4 in Django projects'
NAME = 'django-tinymce-4'
URL = 'https://github.com/ITCase-django/django-tinymce-4'
REQUIRES = [
'django',
'django-filebrowser',
'pillow',
]
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = '\n' + f.read()
setup(
name=NAME,
description=DESCRIPTION,
long_description=long_description,
version=__version__,
url=URL,
author=AUTHOR,
author_email=EMAIL,
packages=find_packages(exclude=['example']),
include_package_data=True,
zip_safe=False,
install_requires=REQUIRES,
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: JavaScript',
'Framework :: Django',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)