add manifest, uplift setup.py to pass twine checks
This commit is contained in:
parent
6c8df7cc7b
commit
d7886c5fc5
|
@ -16,13 +16,20 @@ jobs:
|
|||
# Install Tools
|
||||
- name: Install Tools
|
||||
run: |
|
||||
sudo apt-get install wget build-essential python3 ninja-build
|
||||
sudo apt-get install wget build-essential ninja-build
|
||||
sudo apt-get install libevent-dev libjson-c-dev flex bison
|
||||
sudo apt-get install libfl-dev libfl2 zlib1g-dev
|
||||
pip3 install setuptools
|
||||
pip3 install requests
|
||||
pip3 install pexpect
|
||||
pip3 install meson
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
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 requests pexpect meson
|
||||
|
||||
# Install (n)Migen / LiteX / Cores
|
||||
- name: Install LiteX
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
graft litedram
|
||||
|
||||
include CONTRIBUTORS
|
||||
include LICENSE
|
||||
|
||||
graft doc
|
||||
|
||||
prune examples
|
||||
prune test
|
27
setup.py
27
setup.py
|
@ -4,19 +4,44 @@ from setuptools import setup
|
|||
from setuptools import find_packages
|
||||
|
||||
|
||||
with open("README.md", "r") as fp:
|
||||
long_description = fp.read()
|
||||
|
||||
|
||||
setup(
|
||||
name="litedram",
|
||||
description="Small footprint and configurable DRAM core",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
author="Florent Kermarrec",
|
||||
version="2022.12",
|
||||
author_email="florent@enjoy-digital.fr",
|
||||
url="http://enjoy-digital.fr",
|
||||
download_url="https://github.com/enjoy-digital/litedram",
|
||||
test_suite="test",
|
||||
license="BSD",
|
||||
python_requires="~=3.6",
|
||||
install_requires=["pyyaml"],
|
||||
install_requires=["pyyaml", "litex"],
|
||||
extras_require={
|
||||
"develop": [
|
||||
"meson"
|
||||
"pexpect"
|
||||
"setuptools"
|
||||
"requests"
|
||||
]
|
||||
},
|
||||
packages=find_packages(exclude=("test*", "sim*", "doc*", "examples*")),
|
||||
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={
|
||||
"console_scripts": [
|
||||
"litedram_gen=litedram.gen:main",
|
||||
|
|
Loading…
Reference in New Issue