-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (38 loc) · 1.19 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
#!/usr/bin/env python
from setuptools import setup
import os
# Utility function to read README file
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-constant-contact',
version='1.3',
description=("Django package for creating email marketing "
"campaigns in Constant Contact"),
author='Bob Erb',
author_email='[email protected]',
url='https://github.com/aashe/django-constant-contact',
long_description=read("README.rst"),
packages=[
'django_constant_contact',
'django_constant_contact.migrations'
],
install_requires=[
'Django<1.9',
'django-jsonfield==0.9.15',
'django-htmlmin==0.9.1',
'nap==2.0.0',
'premailer==3.0.1',
'requests==2.9.1',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
],
test_suite='tests.main',
zip_safe=False)