forked from sk1p/django-codemirror2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (27 loc) · 934 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
33
from setuptools import setup, find_packages
import os
BASE_DIR = os.path.dirname(__file__)
def read(fname):
return open(os.path.join(BASE_DIR, fname)).read()
README = read("README.rst")
setup(
name="django-codemirror2",
version="0.0.6",
author_email="[email protected]",
author="Alexander Clausen",
url="https://github.com/sk1p/django-codemirror2",
description="Django widgets for replacing textareas with CodeMirror2, an in-browser code editor",
long_description=README,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: JavaScript',
'Topic :: Text Editors',
],
packages=find_packages(exclude=("examples",)),
zip_safe=False,
)