forked from wagtail/wagtail-transfer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.42 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
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='wagtail-transfer',
version='0.8.5',
description="Content transfer for Wagtail",
author='Matthew Westcott',
author_email='[email protected]',
url='https://github.com/wagtail/wagtail-transfer',
packages=find_packages(exclude=('tests',)),
include_package_data=True,
install_requires=[
],
extras_require={
'docs': [
'mkdocs>=1.0,<1.1',
'mkdocs-material>=4.6,<4.7',
],
},
python_requires=">=3.6",
license='BSD',
long_description="An extension for Wagtail allowing content to be transferred between multiple instances of a Wagtail project",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Django',
'Framework :: Wagtail',
'Framework :: Wagtail :: 2',
'Framework :: Wagtail :: 3',
],
)