mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-04-06 23:00:59 +00:00
26 lines
913 B
Python
Executable file
26 lines
913 B
Python
Executable file
from setuptools import setup
|
|
from os import path
|
|
|
|
setup(
|
|
name='django-markdownx',
|
|
version='0.1.0',
|
|
description='Simple markdown editor (with live preview and images uploads) built for Django',
|
|
url='https://github.com/adi-/django-markdownx',
|
|
author='Adrian Drzewicki',
|
|
author_email='adrian@enove.pl',
|
|
license='BSD',
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: Web Environment',
|
|
'Framework :: Django',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Topic :: Software Development',
|
|
'Topic :: Software Development :: User Interfaces',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: JavaScript',
|
|
],
|
|
keywords='django markdown images upload jquery',
|
|
install_requires=['Pillow==2.6.1'],
|
|
)
|