forked from WGBH/wagtail-streamfieldtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.12 KB
/
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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(
name='wagtail-streamfieldtools',
packages=find_packages(),
version='0.2',
author=u'Jonathan Ellenberger',
author_email='[email protected]',
url='http://github.com/WGBH/wagtail-streamfieldtools/',
license='MIT License, see LICENSE',
description="A suite of tools that extends Wagtail's already-awesome "
"StreamField to make it even more flexible/versatile/useful!",
long_description=open('README.rst').read(),
zip_safe=False,
install_requires=['wagtail>=1.1'],
classifiers=[
'Framework :: Django',
'Framework :: Django :: 1.8',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Development Status :: 3 - Alpha'
]
)