forked from bigmlcom/mailsnake
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (25 loc) · 855 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
28
#!/usr/bin/env python
from setuptools import setup, find_packages
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
KEYWORDS = 'mailchimp api wrapper 1.4'
setup(
name = 'mailsnake',
version = '1.4.2.1',
description = """MailChimp API v1.4 wrapper for Python.""",
author = 'John-Kim Murphy',
url = "https://github.com/leftium/mailsnake",
packages = find_packages(),
download_url = "http://pypi.python.org/pypi/mailsnake/",
classifiers = CLASSIFIERS,
keywords = KEYWORDS,
zip_safe = True,
install_requires = ['requests'],
)