-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.06 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
from setuptools import setup, find_packages
from os.path import abspath, dirname, join
path = abspath(dirname(__file__))
with open(join(path, "README.rst")) as f:
readme = f.read()
setup(
name="batch-mailchimp",
description="A python client for MailChimp Marketing API, with batch support",
url="https://github.com/FullFact/python-batchmailchimp",
author="Andy Lulham",
author_email="[email protected]",
version="1.2.2",
packages=find_packages(),
license="MIT",
keywords="mailchimp marketing api client wrapper",
long_description=readme,
install_requires=["mailchimp-marketing>=3.0.80"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)