|
3 | 3 |
|
4 | 4 |
|
5 | 5 | path = abspath(dirname(__file__)) |
6 | | -with open(join(path, 'README.rst')) as f: |
| 6 | +with open(join(path, "README.rst")) as f: |
7 | 7 | readme = f.read() |
8 | 8 |
|
9 | 9 | 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", |
16 | 16 | packages=find_packages(), |
17 | | - license='MIT', |
18 | | - keywords='mailchimp api v3 client wrapper', |
| 17 | + license="MIT", |
| 18 | + keywords="mailchimp marketing api client wrapper", |
19 | 19 | long_description=readme, |
20 | | - install_requires=['mailchimp-marketing>=3.0.80'], |
| 20 | + install_requires=["mailchimp-marketing>=3.0.80"], |
21 | 21 | 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", |
33 | 32 | ], |
34 | 33 | ) |
0 commit comments