setup.py: Improve indentation.

This commit is contained in:
Florent Kermarrec 2023-12-19 10:08:40 +01:00
parent b6e89c646e
commit 2318ff37d2
1 changed files with 27 additions and 27 deletions

View File

@ -9,25 +9,25 @@ with open("README.md", "r") as fp:
setup( setup(
name="litex", name = "litex",
version="2023.08", version = "2023.08",
description="Python SoC/Core builder for building FPGA based systems.", description = "Python SoC/Core builder for building FPGA based systems.",
long_description=long_description, long_description = long_description,
long_description_content_type="text/markdown", long_description_content_type = "text/markdown",
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/litex", download_url = "https://github.com/enjoy-digital/litex",
test_suite="test", test_suite = "test",
license="BSD", license = "BSD",
python_requires="~=3.6", python_requires = "~=3.6",
install_requires=[ install_requires = [
"migen", "migen",
"packaging", "packaging",
"pyserial", "pyserial",
"requests", "requests",
], ],
extras_require={ extras_require = {
"develop": [ "develop": [
"meson" "meson"
"pexpect" "pexpect"
@ -35,23 +35,23 @@ setup(
"requests" "requests"
] ]
}, },
packages=find_packages(exclude=("test*", "sim*", "doc*")), packages = find_packages(exclude=("test*", "sim*", "doc*")),
include_package_data=True, include_package_data = True,
package_data={ package_data = {
'litex.soc.doc': ['static/*'] 'litex.soc.doc': ['static/*']
}, },
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 :: 3 - Alpha", "Development Status :: 3 - 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",
], ],
entry_points={ entry_points = {
"console_scripts": [ "console_scripts": [
# Terminal/Server/Client. # Terminal/Server/Client.
"litex_term = litex.tools.litex_term:main", "litex_term = litex.tools.litex_term:main",