2012-01-31 15:46:08 -05:00
|
|
|
#!/usr/bin/env python3
|
2011-12-24 07:46:08 -05:00
|
|
|
|
2012-03-10 14:01:14 -05:00
|
|
|
from setuptools import setup
|
|
|
|
from setuptools import find_packages
|
2011-12-24 07:46:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
setup(
|
2015-11-07 06:26:46 -05:00
|
|
|
name="litex",
|
2020-04-07 05:48:16 -04:00
|
|
|
description="Python SoC/Core builder for building FPGA based systems.",
|
2015-11-07 06:26:46 -05:00
|
|
|
author="Florent Kermarrec",
|
|
|
|
author_email="florent@enjoy-digital.fr",
|
|
|
|
url="http://enjoy-digital.fr",
|
|
|
|
download_url="https://github.com/enjoy-digital/litex",
|
2017-04-24 12:45:02 -04:00
|
|
|
test_suite="test",
|
2015-04-13 14:07:07 -04:00
|
|
|
license="BSD",
|
2020-04-07 05:48:16 -04:00
|
|
|
python_requires="~=3.6",
|
2020-02-23 17:19:12 -05:00
|
|
|
install_requires=[
|
|
|
|
"migen",
|
|
|
|
"pyserial",
|
2020-04-27 16:24:10 -04:00
|
|
|
"requests",
|
2020-04-06 14:16:57 -04:00
|
|
|
"pythondata-software-compiler_rt",
|
2020-02-23 17:19:12 -05:00
|
|
|
],
|
2020-04-07 05:48:16 -04:00
|
|
|
packages=find_packages(exclude=("test*", "sim*", "doc*")),
|
2015-11-07 06:26:46 -05:00
|
|
|
include_package_data=True,
|
2020-02-23 16:39:45 -05:00
|
|
|
platforms=["Any"],
|
|
|
|
keywords="HDL ASIC FPGA hardware design",
|
|
|
|
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",
|
|
|
|
],
|
2015-11-07 06:26:46 -05:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
2019-04-23 11:46:20 -04:00
|
|
|
# full names
|
2019-04-20 04:44:53 -04:00
|
|
|
"litex_term=litex.tools.litex_term:main",
|
|
|
|
"litex_server=litex.tools.litex_server:main",
|
2020-05-29 04:40:17 -04:00
|
|
|
"litex_jtag_uart=litex.tools.litex_jtag_uart:main",
|
|
|
|
"litex_crossover_uart=litex.tools.litex_crossover_uart:main",
|
2019-04-20 04:44:53 -04:00
|
|
|
"litex_sim=litex.tools.litex_sim:main",
|
|
|
|
"litex_read_verilog=litex.tools.litex_read_verilog:main",
|
2018-09-23 19:24:51 -04:00
|
|
|
"litex_simple=litex.boards.targets.simple:main",
|
2020-08-04 10:07:53 -04:00
|
|
|
"litex_json2dts=litex.tools.litex_json2dts:main",
|
2019-04-23 11:46:20 -04:00
|
|
|
# short names
|
|
|
|
"lxterm=litex.tools.litex_term:main",
|
|
|
|
"lxserver=litex.tools.litex_server:main",
|
|
|
|
"lxsim=litex.tools.litex_sim:main",
|
2015-11-07 06:26:46 -05:00
|
|
|
],
|
|
|
|
},
|
2011-12-24 07:46:08 -05:00
|
|
|
)
|