2012-09-17 18:22:52 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import sys, os
|
|
|
|
from setuptools import setup
|
|
|
|
from setuptools import find_packages
|
|
|
|
|
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
README = open(os.path.join(here, "README")).read()
|
|
|
|
|
2014-04-18 04:33:05 -04:00
|
|
|
required_version = (3, 3)
|
2012-09-17 18:22:52 -04:00
|
|
|
if sys.version_info < required_version:
|
2015-01-22 15:40:07 -05:00
|
|
|
raise SystemExit("LiteScope requires python {0} or greater".format(
|
2012-09-17 18:22:52 -04:00
|
|
|
".".join(map(str, required_version))))
|
|
|
|
|
|
|
|
setup(
|
2015-01-22 15:40:07 -05:00
|
|
|
name="litescope",
|
2012-09-17 18:22:52 -04:00
|
|
|
version="unknown",
|
2015-01-22 15:40:07 -05:00
|
|
|
description="small footprint and configurable embedded FPGA logic analyzer",
|
2012-09-17 18:22:52 -04:00
|
|
|
long_description=README,
|
|
|
|
author="Florent Kermarrec",
|
|
|
|
author_email="florent@enjoy-digital.fr",
|
|
|
|
url="http://enjoy-digital.fr",
|
2015-01-22 15:40:07 -05:00
|
|
|
download_url="https://github.com/Florent-Kermarrec/litescope",
|
2012-09-17 18:22:52 -04:00
|
|
|
packages=find_packages(here),
|
|
|
|
license="GPL",
|
|
|
|
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 :: GNU General Public License (GPL)",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
],
|
|
|
|
)
|