forked from nmurrin/cmsplugin_syntax_highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 965 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
setup(
name='cmsplugin_syntax_highlight',
version='0.1.5',
author='Norm Murrin',
author_email='[email protected]',
url='http://github.com/nmurrin',
license = 'Simplified BSD License',
description = 'DjangoCMS syntax highlighting plugin allowing '
'for easy integration with SyntaxHighlighter.',
long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
packages=find_packages(),
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
provides=['cmsplugin_syntax_highlight', ],
include_package_data=True,
zip_safe = False,
)