-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1001 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
from setuptools import setup, find_packages
import wtknowledgebase
setup(
name='wagtail-knowledgebase',
version=wtknowledgebase.__version__,
description='Knowledgebase pages with bootstrap compatible StreamFields configured',
long_description=open('README.rst').read(),
author='Shaun Kruger',
author_email='shaun.kruger@gmail.com',
url='https://github.com/skruger/wagtail-knowledgebase',
packages=find_packages(exclude=('tests*', 'testapp', 'search')),
license='The MIT License: http://www.opensource.org/licenses/mit-license.php',
platforms='all',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
install_requires=[
"wagtail>=5.0.0",
],
include_package_data=True,
zip_safe=False,
)