From 964f42910e6779f106fedf639608c4c5f5e15bb7 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 19 Dec 2023 09:12:37 +0100 Subject: [PATCH] setup.py: Improve indentation. --- setup.py | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/setup.py b/setup.py index d0c4fa2..71f97d4 100755 --- a/setup.py +++ b/setup.py @@ -9,20 +9,20 @@ setup( - name="liteiclink", - version="2023.08", - description="Small footprint and configurable Inter-Chip communication cores", - long_description=long_description, - long_description_content_type="text/markdown", - author="Florent Kermarrec", - author_email="florent@enjoy-digital.fr", - url="http://enjoy-digital.fr", - download_url="https://github.com/enjoy-digital/liteiclink", - test_suite="test", - license="BSD", - python_requires="~=3.6", - install_requires=["pyyaml", "litex"], - extras_require={ + name = "liteiclink", + version = "2023.08", + description = "Small footprint and configurable Inter-Chip communication cores", + long_description = long_description, + long_description_content_type = "text/markdown", + author = "Florent Kermarrec", + author_email = "florent@enjoy-digital.fr", + url = "http://enjoy-digital.fr", + download_url = "https://github.com/enjoy-digital/liteiclink", + test_suite = "test", + license = "BSD", + python_requires = "~=3.6", + install_requires = ["pyyaml", "litex"], + extras_require = { "develop": [ "meson" "pexpect" @@ -30,16 +30,16 @@ "requests" ] }, - packages=find_packages(exclude=("test*", "sim*", "doc*", "examples*")), - include_package_data=True, - keywords="HDL ASIC FPGA hardware design", + packages = find_packages(exclude=("test*", "sim*", "doc*", "examples*")), + include_package_data = True, + keywords = "HDL ASIC FPGA hardware design", classifiers=[ - "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", - "Environment :: Console", - "Development Status :: 3 - Alpha", - "Intended Audience :: Developers", - "License :: OSI Approved :: BSD License", - "Operating System :: OS Independent", + "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", + "Environment :: Console", + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", "Programming Language :: Python", ], )