Skip to content

Commit

Permalink
setup.py: Update for consistency with other setup.py scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Jan 7, 2025
1 parent 82fbb79 commit 9d77a18
Showing 1 changed file with 29 additions and 13 deletions.
42 changes: 29 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,35 @@
from setuptools import find_packages


with open("README.md", "r", encoding="utf-8") as fp:
long_description = fp.read()


setup(
name = "litespi",
description = "Small footprint and configurable SPI core",
author = "LiteSPI Developers",
url = "https://github.com/litex-hub",
download_url = "https://github.com/litex-hub/litespi",
test_suite = "test",
license = "BSD",
python_requires = "~=3.7",
packages = find_packages(exclude=("test*", "sim*", "doc*", "examples*")),
include_package_data = True,
keywords = "HDL ASIC FPGA hardware design",
classifiers = [
name = "litespi",
version = "2024.08",
description = "Small footprint and configurable SPI core",
long_description = long_description,
long_description_content_type = "text/markdown",
author = "LiteSPI Developers",
url = "https://github.com/litex-hub",
download_url = "https://github.com/litex-hub/litespi",
test_suite = "test",
license = "BSD",
python_requires = "~=3.7",
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",
Expand All @@ -25,7 +41,7 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
],
entry_points = {
entry_points = {
"console_scripts": [
"litespi_gen=litespi.gen:main",
],
Expand Down

0 comments on commit 9d77a18

Please sign in to comment.