82 lines
2.9 KiB
Python
Executable File
82 lines
2.9 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
from setuptools import find_packages
|
|
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fp:
|
|
long_description = fp.read()
|
|
|
|
|
|
setup(
|
|
name = "litex",
|
|
version = "2024.04",
|
|
description = "Python SoC/Core builder for building FPGA based systems.",
|
|
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/litex",
|
|
test_suite = "test",
|
|
license = "BSD",
|
|
python_requires = "~=3.7",
|
|
install_requires = [
|
|
"migen",
|
|
"packaging",
|
|
"pyserial",
|
|
"requests",
|
|
],
|
|
extras_require = {
|
|
"develop": [
|
|
"meson"
|
|
"pexpect"
|
|
"setuptools"
|
|
"requests"
|
|
]
|
|
},
|
|
packages = find_packages(exclude=("test*", "sim*", "doc*")),
|
|
include_package_data = True,
|
|
package_data = {
|
|
'litex.soc.doc': ['static/*']
|
|
},
|
|
platforms = ["Any"],
|
|
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",
|
|
"Programming Language :: Python",
|
|
],
|
|
entry_points = {
|
|
"console_scripts": [
|
|
# Terminal/Server/Client.
|
|
"litex_term = litex.tools.litex_term:main",
|
|
"litex_server = litex.tools.litex_server:main",
|
|
"litex_cli = litex.tools.litex_client:main",
|
|
|
|
# SoC Generators.
|
|
"litex_soc_gen = litex.tools.litex_soc_gen:main",
|
|
"litex_periph_gen = litex.tools.litex_periph_gen:main",
|
|
|
|
# Simulation.
|
|
"litex_sim=litex.tools.litex_sim:main",
|
|
|
|
# Demos.
|
|
"litex_bare_metal_demo=litex.soc.software.demo.demo:main",
|
|
|
|
# Export tools.
|
|
"litex_json2dts_linux = litex.tools.litex_json2dts_linux:main",
|
|
"litex_json2dts_zephyr = litex.tools.litex_json2dts_zephyr:main",
|
|
"litex_json2renode = litex.tools.litex_json2renode:main",
|
|
|
|
# Development tools.
|
|
"litex_read_verilog = litex.tools.litex_read_verilog:main",
|
|
"litex_contributors = litex.tools.litex_contributors:main",
|
|
],
|
|
},
|
|
)
|