From f54e30f501439281c4e49eba75170d2dc4bb4669 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Wed, 17 Jun 2020 21:19:28 -0400 Subject: setup.py: Format via black. --- setup.py | 54 ++++++++++++++++++++++++++---------------------------- 1 file changed, 26 insertions(+), 28 deletions(-) diff --git a/setup.py b/setup.py index f93e384..597074e 100644 --- a/setup.py +++ b/setup.py @@ -12,37 +12,35 @@ from os import path from acmens import __version__ here = path.abspath(path.dirname(__file__)) -with open(path.join(here, 'README.md'), encoding='utf-8') as f: +with open(path.join(here, "README.md"), encoding="utf-8") as f: long_description = f.read() config = { - 'name': 'acmens', - 'version': __version__, - 'description': 'A simple ACMEv2 client. Fork of acme-nosudo.', - 'long_description': long_description, - 'long_description_content_type': 'text/markdown', - 'url': 'https://github.com/r5d/acmens', - 'author': 'rsiddharth', - 'author_email': 's@ricketyspace.net', - 'license': 'GNU Affero General Public License v3', - 'classifiers': [ - 'Development Status :: 2 - Pre-Alpha', - 'Environment :: Console', - 'Intended Audience :: Developers', - 'Intended Audience :: End Users/Desktop', - 'License :: OSI Approved :: GNU Affero General Public License v3', - 'Operating System :: POSIX :: BSD', - 'Operating System :: POSIX :: Linux', - 'Operating System :: MacOS', - 'Programming Language :: Python :: 3 :: Only', - 'Topic :: System :: Systems Administration', - 'Topic :: Utilities', + "name": "acmens", + "version": __version__, + "description": "A simple ACMEv2 client. Fork of acme-nosudo.", + "long_description": long_description, + "long_description_content_type": "text/markdown", + "url": "https://github.com/r5d/acmens", + "author": "rsiddharth", + "author_email": "s@ricketyspace.net", + "license": "GNU Affero General Public License v3", + "classifiers": [ + "Development Status :: 2 - Pre-Alpha", + "Environment :: Console", + "Intended Audience :: Developers", + "Intended Audience :: End Users/Desktop", + "License :: OSI Approved :: GNU Affero General Public License v3", + "Operating System :: POSIX :: BSD", + "Operating System :: POSIX :: Linux", + "Operating System :: MacOS", + "Programming Language :: Python :: 3 :: Only", + "Topic :: System :: Systems Administration", + "Topic :: Utilities", ], - 'keywords': 'acme letsencrypt acmens', - 'py_modules': ['acmens'], - 'python_requires': '>=3', - 'entry_points': { - 'console_scripts': ['acmens = acmens:main'] - } + "keywords": "acme letsencrypt acmens", + "py_modules": ["acmens"], + "python_requires": ">=3", + "entry_points": {"console_scripts": ["acmens = acmens:main"]}, } setup(**config) -- cgit v1.2.3