diff options
| author | rsiddharth <s@ricketyspace.net> | 2020-06-17 21:19:28 -0400 | 
|---|---|---|
| committer | rsiddharth <s@ricketyspace.net> | 2020-06-17 21:19:28 -0400 | 
| commit | f54e30f501439281c4e49eba75170d2dc4bb4669 (patch) | |
| tree | 9ee3486efbd80eba37b9417a74c94e5ff6484434 | |
| parent | 7da9ef9e229e2dd564df13cd2fdc7ef40d9ae61f (diff) | |
setup.py: Format via black.
| -rw-r--r-- | setup.py | 54 | 
1 files changed, 26 insertions, 28 deletions
| @@ -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) | 
