2015-09-07 19:43:09 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2015-11-14 11:28:40 -05:00
|
|
|
import sys
|
2015-09-07 19:43:09 -04:00
|
|
|
from setuptools import setup
|
|
|
|
from setuptools import find_packages
|
|
|
|
|
|
|
|
|
2018-02-22 04:12:33 -05:00
|
|
|
if sys.version_info[:3] < (3, 5):
|
|
|
|
raise SystemExit("You need Python 3.5+")
|
2015-11-14 11:28:40 -05:00
|
|
|
|
2015-09-07 19:43:09 -04:00
|
|
|
|
|
|
|
setup(
|
2018-01-12 21:23:18 -05:00
|
|
|
name="liteeth",
|
2018-02-23 07:39:53 -05:00
|
|
|
version="0.2.dev",
|
2018-02-22 04:12:33 -05:00
|
|
|
description="Small footprint and configurable Ethernet core",
|
2018-01-12 21:23:18 -05:00
|
|
|
long_description=open("README").read(),
|
|
|
|
author="Florent Kermarrec",
|
|
|
|
author_email="florent@enjoy-digital.fr",
|
|
|
|
url="http://enjoy-digital.fr",
|
|
|
|
download_url="https://github.com/enjoy-digital/liteeth",
|
2017-01-19 08:33:24 -05:00
|
|
|
test_suite="test",
|
2015-11-14 11:28:40 -05:00
|
|
|
license="BSD",
|
|
|
|
platforms=["Any"],
|
|
|
|
keywords="HDL ASIC FPGA hardware design",
|
2018-01-12 21:23:18 -05:00
|
|
|
classifiers=[
|
|
|
|
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Development Status :: Alpha",
|
|
|
|
"Intended Audience :: Developers",
|
2015-11-14 11:28:40 -05:00
|
|
|
"License :: OSI Approved :: BSD License",
|
2018-01-12 21:23:18 -05:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
2015-11-14 11:28:40 -05:00
|
|
|
],
|
2018-08-31 02:26:37 -04:00
|
|
|
packages=find_packages(exclude=("test*", "sim*", "doc*", "examples*")),
|
2015-11-14 11:28:40 -05:00
|
|
|
include_package_data=True,
|
2019-11-24 04:59:52 -05:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
|
|
|
"liteeth_gen=liteeth.gen:main",
|
|
|
|
],
|
|
|
|
},
|
2015-09-07 19:43:09 -04:00
|
|
|
)
|