forked from torchbox/wagtail-import-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 898 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='wagtail-import-export',
version='0.2',
description="Page export from one Wagtail instance into another",
author='Torchbox and NHS Digital',
author_email='[email protected]',
url='https://github.com/torchbox/wagtail-import-export',
packages=find_packages(),
include_package_data=True,
license='BSD',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Framework :: Django',
],
)