Merge pull request #9 from felixheld/indentation-fixes
Fix all remaining indentation issues in python code
This commit is contained in:
commit
7803591050
30
setup.py
30
setup.py
|
@ -11,25 +11,25 @@ if sys.version_info[:3] < (3, 3):
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="litescope",
|
name="litescope",
|
||||||
version="0.1",
|
version="0.1",
|
||||||
description="small footprint and configurable embedded FPGA logic analyzer core",
|
description="small footprint and configurable embedded FPGA logic analyzer core",
|
||||||
long_description=open("README").read(),
|
long_description=open("README").read(),
|
||||||
author="Florent Kermarrec",
|
author="Florent Kermarrec",
|
||||||
author_email="florent@enjoy-digital.fr",
|
author_email="florent@enjoy-digital.fr",
|
||||||
url="http://enjoy-digital.fr",
|
url="http://enjoy-digital.fr",
|
||||||
download_url="https://github.com/enjoy-digital/litescope",
|
download_url="https://github.com/enjoy-digital/litescope",
|
||||||
test_suite="test",
|
test_suite="test",
|
||||||
license="BSD",
|
license="BSD",
|
||||||
platforms=["Any"],
|
platforms=["Any"],
|
||||||
keywords="HDL ASIC FPGA hardware design",
|
keywords="HDL ASIC FPGA hardware design",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
|
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
"Development Status :: Alpha",
|
"Development Status :: Alpha",
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
"License :: OSI Approved :: BSD License",
|
"License :: OSI Approved :: BSD License",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
],
|
],
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
|
|
Loading…
Reference in New Issue