forked from jazzband/django-tinymce
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·37 lines (35 loc) · 1.24 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import metadata
app_name = metadata.name
version = metadata.version
def read(filename):
with open(filename) as fp:
return fp.read()
long_description = read('README.md')
setup(
name = "django-%s" % app_name,
version = version,
packages = find_packages(),
include_package_data = True,
author = "Aljosa Mohorovic",
author_email = "[email protected]",
description = "A Django application that contains a widget to render a" \
" form field as a TinyMCE editor.",
long_description = long_description,
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 = "https://github.com/aljosa/django-tinymce",
)