add manifest, uplift setup.py to pass twine checks
This commit is contained in:
parent
97dccdb294
commit
d66457d2b0
|
@ -13,8 +13,18 @@ jobs:
|
||||||
# Install Tools
|
# Install Tools
|
||||||
- name: Install Tools
|
- name: Install Tools
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install wget build-essential python3
|
sudo apt-get install wget build-essential
|
||||||
pip3 install setuptools
|
|
||||||
|
- name: Set up Python 3.9
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: "3.9"
|
||||||
|
cache: "pip"
|
||||||
|
cache-dependency-path: "setup.py"
|
||||||
|
|
||||||
|
- name: Install Python dependencies
|
||||||
|
run: |
|
||||||
|
python3 -m pip install setuptools
|
||||||
|
|
||||||
# Install (n)Migen / LiteX / Cores
|
# Install (n)Migen / LiteX / Cores
|
||||||
- name: Install LiteX
|
- name: Install LiteX
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
graft liteeth
|
||||||
|
|
||||||
|
include CONTRIBUTORS
|
||||||
|
include LICENSE
|
||||||
|
|
||||||
|
graft doc
|
||||||
|
|
||||||
|
prune bench
|
||||||
|
prune examples
|
||||||
|
prune test
|
23
setup.py
23
setup.py
|
@ -4,9 +4,16 @@ from setuptools import setup
|
||||||
from setuptools import find_packages
|
from setuptools import find_packages
|
||||||
|
|
||||||
|
|
||||||
|
with open("README.md", "r") as fp:
|
||||||
|
long_description = fp.read()
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="liteeth",
|
name="liteeth",
|
||||||
|
version="2022.12",
|
||||||
description="Small footprint and configurable Ethernet core",
|
description="Small footprint and configurable Ethernet core",
|
||||||
|
long_description=long_description,
|
||||||
|
long_description_content_type="text/markdown",
|
||||||
author="Florent Kermarrec",
|
author="Florent Kermarrec",
|
||||||
author_email="florent@enjoy-digital.fr",
|
author_email="florent@enjoy-digital.fr",
|
||||||
url="http://enjoy-digital.fr",
|
url="http://enjoy-digital.fr",
|
||||||
|
@ -14,8 +21,24 @@ setup(
|
||||||
test_suite="test",
|
test_suite="test",
|
||||||
license="BSD",
|
license="BSD",
|
||||||
python_requires="~=3.6",
|
python_requires="~=3.6",
|
||||||
|
install_requires=["pyyaml", "litex", "liteiclink"],
|
||||||
|
extras_require={
|
||||||
|
"develop": [
|
||||||
|
"setuptools"
|
||||||
|
]
|
||||||
|
},
|
||||||
packages=find_packages(exclude=("test*", "sim*", "doc*", "examples*")),
|
packages=find_packages(exclude=("test*", "sim*", "doc*", "examples*")),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
|
keywords="HDL ASIC FPGA hardware design",
|
||||||
|
classifiers=[
|
||||||
|
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
|
||||||
|
"Environment :: Console",
|
||||||
|
"Development Status :: 3 - Alpha",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"License :: OSI Approved :: BSD License",
|
||||||
|
"Operating System :: OS Independent",
|
||||||
|
"Programming Language :: Python",
|
||||||
|
],
|
||||||
entry_points={
|
entry_points={
|
||||||
"console_scripts": [
|
"console_scripts": [
|
||||||
"liteeth_gen=liteeth.gen:main",
|
"liteeth_gen=liteeth.gen:main",
|
||||||
|
|
Loading…
Reference in New Issue