45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
"""
|
|
Install wagtail-birdsong using setuptools
|
|
"""
|
|
from setuptools import find_packages, setup
|
|
|
|
with open('birdsong/version.py', 'r') as f:
|
|
version = None
|
|
exec(f.read())
|
|
|
|
with open('README.md', 'r') as f:
|
|
readme = f.read()
|
|
|
|
setup(
|
|
name='wagtail-birdsong',
|
|
version=version,
|
|
description='Create and send email campaigns from Wagtail',
|
|
long_description=readme,
|
|
author='Jonny Scholes',
|
|
author_email='jonny@neonjungle.studio',
|
|
|
|
install_requires=['wagtail>=2.7', 'django-mjml'],
|
|
zip_safe=False,
|
|
license='BSD License',
|
|
|
|
packages=find_packages(exclude=['tests*']),
|
|
|
|
include_package_data=True,
|
|
package_data={},
|
|
|
|
classifiers=[
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Framework :: Django',
|
|
'License :: OSI Approved :: BSD License',
|
|
],
|
|
)
|