Merge pull request #9 from felixheld/indentation-fixes

Fix all remaining indentation issues in python code
This commit is contained in:
Tim Ansell 2018-01-13 13:33:11 +11:00 committed by GitHub
commit 7803591050
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 15 deletions

View File

@ -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,