-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
26 lines (24 loc) · 895 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
from setuptools import setup, find_packages
readme = open("chimpy/README.txt").read()
setup(name='chimpy',
version='1.2',
description='Python wrapper for the MailChimp API',
long_description=readme,
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords = 'email mail mailinglist newsletter',
author='James Casbon, Anton Stonor, Andrew Ingram',
author_email='[email protected]',
url = 'http://code.google.com/p/chimpy/',
license = 'New BSD License',
packages=find_packages(),
zip_safe=False,
install_requires=[
'simplejson', ]
)