forked from Leftium/mailsnake
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
38 lines (34 loc) · 1.16 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
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
# dep sugar.
_ver = sys.version_info
if _ver[0] == 2:
dep = ['simplejson', 'requests']
elif _ver[0] == 3:
dep = ['requests']
setup(
name='mailsnake',
version='1.6.4',
description='MailChimp API v1.3, STS, Export, Mandrill wrapper for Python.',
long_description=open('README.rst').read(),
author='John-Kim Murphy',
url='https://github.com/michaelhelmick/python-mailsnake',
packages=find_packages(),
download_url='http://pypi.python.org/pypi/mailsnake/',
keywords='mailsnake mailchimp api wrapper export mandrill sts 1.3 p3k',
zip_safe=True,
install_requires=dep,
py_modules=['mailsnake'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)