From d740ec55d132cbdd99659af9f22d5c8607695d23 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 19 Dec 2023 10:05:37 +0100 Subject: [PATCH] setup.py: Improve indentation. --- setup.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/setup.py b/setup.py index 73424f2..3e848f3 100755 --- a/setup.py +++ b/setup.py @@ -5,18 +5,18 @@ setup( - name="litesdcard", - description="Small footprint and configurable SD Card core", - author="Florent Kermarrec, Pierre-Olivier Vauboin", - author_email="florent@enjoy-digital.fr, po@lambdaconcept.com", - url="http://enjoy-digital.fr", - download_url="https://github.com/enjoy-digital/litesdcard", - test_suite="test", - license="BSD", - python_requires="~=3.6", - packages=find_packages(exclude=("test*", "sim*", "doc*", "examples*")), - include_package_data=True, - entry_points={ + name = "litesdcard", + description = "Small footprint and configurable SD Card core", + author = "Florent Kermarrec, Pierre-Olivier Vauboin", + author_email = "florent@enjoy-digital.fr, po@lambdaconcept.com", + url = "http://enjoy-digital.fr", + download_url = "https://github.com/enjoy-digital/litesdcard", + test_suite = "test", + license = "BSD", + python_requires = "~=3.6", + packages = find_packages(exclude=("test*", "sim*", "doc*", "examples*")), + include_package_data = True, + entry_points = { "console_scripts": [ "litesdcard_gen=litesdcard.gen:main", ],