forked from aldryn/aldryn-mailchimp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.1 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from aldryn_mailchimp import __version__
REQUIREMENTS = [
'django-admin-sortable',
'pyrate>=0.5a5',
'oauthlib<0.7.0',
]
CLASSIFIERS = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
]
setup(
name='aldryn-mailchimp',
version=__version__,
description='Plugins for MailChimp integration.',
author='Divio AG',
author_email='[email protected]',
url='https://github.com/aldryn/aldryn-mailchimp',
install_requires=REQUIREMENTS,
packages=find_packages(),
license='LICENSE.txt',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
include_package_data=True,
zip_safe=False
)