2015-09-07 05:49:54 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
from setuptools import find_packages
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
2015-11-14 11:31:14 -05:00
|
|
|
name="litescope",
|
2019-11-22 13:36:44 -05:00
|
|
|
description="Small footprint and configurable embedded FPGA logic analyzer core",
|
2018-01-12 21:24:29 -05:00
|
|
|
author="Florent Kermarrec",
|
|
|
|
author_email="florent@enjoy-digital.fr",
|
|
|
|
url="http://enjoy-digital.fr",
|
|
|
|
download_url="https://github.com/enjoy-digital/litescope",
|
|
|
|
test_suite="test",
|
2015-11-14 11:31:14 -05:00
|
|
|
license="BSD",
|
2020-04-07 05:58:21 -04:00
|
|
|
python_requires="~=3.6",
|
2018-08-31 02:34:09 -04:00
|
|
|
packages=find_packages(exclude=("test*", "sim*", "doc*", "examples*")),
|
2015-11-14 11:31:14 -05:00
|
|
|
include_package_data=True,
|
2020-08-05 06:39:17 -04:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
|
|
|
"litescope_cli=litescope.software.litescope_cli:main",
|
|
|
|
],
|
|
|
|
},
|
2015-09-07 05:49:54 -04:00
|
|
|
)
|