forked from onepill/django-simplemde
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 999 Bytes
/
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
import os
from setuptools import setup
f = open(os.path.join(os.path.dirname(__file__), 'README.md'))
readme = f.read()
f.close()
setup(
name='django-simplemde',
version='0.1.4',
description='django-simplemde is a WYSIWYG markdown editor for Django',
long_description=readme,
long_description_content_type="text/markdown",
author="Siyuan Zhang",
author_email='[email protected]',
url='https://github.com/onepill/django-simplemde',
license='MIT',
packages=['simplemde'],
include_package_data=True,
install_requires=['setuptools'],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords='django,admin,wysiwyg,markdown,editor,simplemde',
)