-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (29 loc) · 958 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
import setuptools
setuptools.setup(
name='mezzanine-shortcodes',
description=(
"A Mezzanine package for adding buttons and menus to the richtext "
"editor by simply decorating a python function."),
url='https://github.com/ryneeverett/mezzanine-shortcodes',
author='Ryne Everett',
author_email='ryneeverett@gmail.com',
license='BSD',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
packages=setuptools.find_packages(),
install_requires=[
'beautifulsoup4',
'mezzanine',
],
use_scm_version=True,
setup_requires=['setuptools_scm'],
include_package_data=True,
)