2015-09-07 05:49:54 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2015-11-14 11:31:14 -05:00
|
|
|
import sys
|
2015-09-07 05:49:54 -04:00
|
|
|
from setuptools import setup
|
|
|
|
from setuptools import find_packages
|
|
|
|
|
|
|
|
|
2015-11-14 11:31:14 -05:00
|
|
|
if sys.version_info[:3] < (3, 3):
|
|
|
|
raise SystemExit("You need Python 3.3+")
|
|
|
|
|
2015-09-07 05:49:54 -04:00
|
|
|
|
|
|
|
setup(
|
2015-11-14 11:31:14 -05:00
|
|
|
name="litescope",
|
2016-04-29 08:41:47 -04:00
|
|
|
version="0.1",
|
2015-09-07 05:49:54 -04:00
|
|
|
description="small footprint and configurable embedded FPGA logic analyzer core",
|
2015-11-14 11:31:14 -05:00
|
|
|
long_description=open("README").read(),
|
2015-09-07 05:49:54 -04:00
|
|
|
author="Florent Kermarrec",
|
|
|
|
author_email="florent@enjoy-digital.fr",
|
|
|
|
url="http://enjoy-digital.fr",
|
|
|
|
download_url="https://github.com/enjoy-digital/litescope",
|
2017-01-18 22:43:40 -05:00
|
|
|
test_suite="test",
|
2015-11-14 11:31:14 -05:00
|
|
|
license="BSD",
|
|
|
|
platforms=["Any"],
|
|
|
|
keywords="HDL ASIC FPGA hardware design",
|
2015-09-07 05:49:54 -04:00
|
|
|
classifiers=[
|
|
|
|
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Development Status :: Alpha",
|
|
|
|
"Intended Audience :: Developers",
|
2015-11-14 11:31:14 -05:00
|
|
|
"License :: OSI Approved :: BSD License",
|
2015-09-07 05:49:54 -04:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
2015-11-14 11:31:14 -05:00
|
|
|
],
|
2016-03-22 05:16:29 -04:00
|
|
|
packages=find_packages(),
|
2015-11-14 11:31:14 -05:00
|
|
|
include_package_data=True,
|
2015-09-07 05:49:54 -04:00
|
|
|
)
|