Skip to content

Commit e86e8d9

Browse files
committed
Update setup
1 parent 8ab7b2f commit e86e8d9

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

setup.py

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,31 @@
33

44

55
path = abspath(dirname(__file__))
6-
with open(join(path, 'README.rst')) as f:
6+
with open(join(path, "README.rst")) as f:
77
readme = f.read()
88

99
setup(
10-
name='batch-mailchimp',
11-
description='A python client for v3 of MailChimp API, with batch support',
12-
url='https://github.com/FullFact/python-batchmailchimp',
13-
author='Andy Lulham',
14-
author_email='andy.lulham@fullfact.org',
15-
version='1.0.1',
10+
name="batch-mailchimp",
11+
description="A python client for MailChimp Marketing API, with batch support",
12+
url="https://github.com/FullFact/python-batchmailchimp",
13+
author="Andy Lulham",
14+
author_email="andy.lulham@fullfact.org",
15+
version="1.0.1",
1616
packages=find_packages(),
17-
license='MIT',
18-
keywords='mailchimp api v3 client wrapper',
17+
license="MIT",
18+
keywords="mailchimp marketing api client wrapper",
1919
long_description=readme,
20-
install_requires=['mailchimp-marketing>=3.0.80'],
20+
install_requires=["mailchimp-marketing>=3.0.80"],
2121
classifiers=[
22-
'Development Status :: 5 - Production/Stable',
23-
'Intended Audience :: Developers',
24-
'Topic :: Software Development :: Libraries :: Python Modules',
25-
'License :: OSI Approved :: MIT License',
26-
'Programming Language :: Python :: 2',
27-
'Programming Language :: Python :: 2.7',
28-
'Programming Language :: Python :: 3',
29-
'Programming Language :: Python :: 3.4',
30-
'Programming Language :: Python :: 3.6',
31-
'Programming Language :: Python :: 3.7',
32-
'Programming Language :: Python :: 3.8',
22+
"Development Status :: 5 - Production/Stable",
23+
"Intended Audience :: Developers",
24+
"Topic :: Software Development :: Libraries :: Python Modules",
25+
"License :: OSI Approved :: MIT License",
26+
"Programming Language :: Python :: 3",
27+
"Programming Language :: Python :: 3.6",
28+
"Programming Language :: Python :: 3.7",
29+
"Programming Language :: Python :: 3.8",
30+
"Programming Language :: Python :: 3.9",
31+
"Programming Language :: Python :: 3.10",
3332
],
3433
)

0 commit comments

Comments
 (0)