-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
32 lines (28 loc) · 978 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
29
30
31
32
__version__ = '1.0b'
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
setup(name='postmonkey',
version=__version__,
description='Python wrapper for Mailchimp API',
long_description=README + '\n\n' + CHANGES,
classifiers=[
'Intended Audience :: Developers',
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
keywords='mailchimp',
author='Eric Rasmussen',
author_email='eric@chromaticleaves.com',
url='http://postmonkey.readthedocs.org/',
license='FreeBSD',
packages=['postmonkey'],
test_suite='postmonkey.tests',
include_package_data=True,
zip_safe=False,
tests_require=['pkginfo', 'nose'],
install_requires=['requests'],
)