From febb358d337976eb0a5d77dcb9312b26f2ef44d6 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Sat, 13 Jan 2018 13:24:29 +1100 Subject: [PATCH] Fix all remaining indentation issues in python code I ran a script that shouldn't have missed any tab in the python source files. --- setup.py | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/setup.py b/setup.py index 9e58e4d..6fe20f0 100755 --- a/setup.py +++ b/setup.py @@ -11,25 +11,25 @@ if sys.version_info[:3] < (3, 3): setup( name="litescope", - version="0.1", - description="small footprint and configurable embedded FPGA logic analyzer core", - long_description=open("README").read(), - author="Florent Kermarrec", - author_email="florent@enjoy-digital.fr", - url="http://enjoy-digital.fr", - download_url="https://github.com/enjoy-digital/litescope", - test_suite="test", + version="0.1", + description="small footprint and configurable embedded FPGA logic analyzer core", + long_description=open("README").read(), + author="Florent Kermarrec", + author_email="florent@enjoy-digital.fr", + url="http://enjoy-digital.fr", + download_url="https://github.com/enjoy-digital/litescope", + test_suite="test", license="BSD", platforms=["Any"], keywords="HDL ASIC FPGA hardware design", - classifiers=[ - "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", - "Environment :: Console", - "Development Status :: Alpha", - "Intended Audience :: Developers", + classifiers=[ + "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", + "Environment :: Console", + "Development Status :: Alpha", + "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", - "Operating System :: OS Independent", - "Programming Language :: Python", + "Operating System :: OS Independent", + "Programming Language :: Python", ], packages=find_packages(), include_package_data=True,