Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/misoc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9c905830dcae
Choose a base ref
...
head repository: m-labs/misoc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: af3723db149e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 4, 2015

  1. setup: fix readme

    sbourdeauducq committed Oct 4, 2015

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    nomadium Miguel Landaeta
    Copy the full SHA
    5e8c4cc View commit details
  2. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    nomadium Miguel Landaeta
    Copy the full SHA
    af3723d View commit details
Showing with 8 additions and 2 deletions.
  1. +8 −2 setup.py
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -13,12 +13,11 @@
name="misoc",
version="1.0",
description="a high performance and small footprint SoC based on Migen",
long_description=open("README.rst").read(),
long_description=open("README").read(),
author="Sebastien Bourdeauducq",
author_email="sb@m-labs.hk",
url="http://m-labs.hk",
download_url="https://github.com/m-labs/misoc",
packages=find_packages(),
license="BSD",
platforms=["Any"],
keywords="HDL ASIC FPGA hardware design",
@@ -31,4 +30,11 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
],
packages=find_packages(),
entry_points={
"console_scripts": [
"flterm=misoc.tools.flterm:main",
"mkmscimg=misoc.tools.mkmscimg:main",
],
},
)