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,
|
2021-08-31 23:03:20 -04:00
|
|
|
package_data={
|
|
|
|
'litex.soc.doc': ['static/*']
|
|
|
|
},
|
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-10-22 11:43:42 -04:00
|
|
|
"litex_cli=litex.tools.litex_client: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",
|
2021-08-24 02:52:56 -04:00
|
|
|
"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",
|
2020-12-21 13:27:21 -05:00
|
|
|
"litex_bare_metal_demo=litex.soc.software.demo.demo:main",
|
2021-09-15 08:38:45 -04:00
|
|
|
"litex_contributors=litex.tools.litex_contributors: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
|
|
|
)
|