forked from mukulrawat1986/wagtail_blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 870 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
from setuptools import setup, find_packages
setup(
name = "wagtail-blog",
version = "0.8",
author = "David Burke",
author_email = "[email protected]",
description = ("A wordpress like blog app implemented in wagtail"),
license = "Apache License",
keywords = "django wagtail blog",
url = "https://github.com/thelabnyc/wagtail_blog",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
'Environment :: Web Environment',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Intended Audience :: Developers',
"License :: OSI Approved :: Apache Software License",
],
install_requires=[
'wagtail>=0.8.5',
]
)