diff options
| author | Yuval Adam <_@yuv.al> | 2020-02-01 12:59:51 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2020-02-01 12:59:51 +0200 |
| commit | b0668017d1d6266d0420d82a0c6467138d1e1b21 (patch) | |
| tree | 53ba9a0664b86ae054424da634cb112e2dea41c0 /setup.py | |
| parent | 8ecb86371b2cb99e0460b15320c2ffbd77ced138 (diff) | |
Run black on entire codebase
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 38 |
1 files changed, 20 insertions, 18 deletions
@@ -1,28 +1,30 @@ from pathlib import Path from setuptools import setup, find_packages -with open(str(Path(__file__).resolve().parents[0] / 'README.rst'), encoding='utf-8') as f: +with open( + str(Path(__file__).resolve().parents[0] / "README.rst"), encoding="utf-8" +) as f: long_description = f.read() setup( - name='viewstate', - author='Yuval Adam', - author_email='_@yuv.al', - version='0.4.3', - description='ASP.NET View State Decoder', + name="viewstate", + author="Yuval Adam", + author_email="_@yuv.al", + version="0.4.3", + description="ASP.NET View State Decoder", long_description=long_description, - url='https://github.com/yuvadm/viewstate', - license='MIT', - python_requires='>=3.5.0', - packages=find_packages(exclude=['docs', 'tests']), + url="https://github.com/yuvadm/viewstate", + license="MIT", + python_requires=">=3.5.0", + packages=find_packages(exclude=["docs", "tests"]), classifiers=[ - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: Implementation :: CPython', - 'Programming Language :: Python :: Implementation :: PyPy' + "License :: OSI Approved :: MIT License", + "Programming Language :: Python", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", ], ) |
