Skip to content

Commit 70fed85

Browse files
committed
Fix Licensing Info, Update Readme
1 parent a004127 commit 70fed85

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Readme.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
<p align="center">A simple utility using Pyverilog that lists the differences between two netlists.</p>
1010

1111
# Requirements
12-
* Python 3.6+ with PIP
12+
* Python 3.8+ with PIP
13+
* IcarusVerilog
1314

1415
# Installation
1516
```sh

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tool.poetry]
22
name = "nldiff"
3-
version = "0.1.0" # Replace with your actual version
3+
version = "0.1.1"
44
description = "Netlist Diff Tool"
55
authors = ["Mohamed Gaber <[email protected]>"]
6-
license = "MIT" # Replace with your license if different. Common ones: MIT, Apache-2.0, GPL-3.0
6+
license = "Apache-2.0"
77
readme = "Readme.md"
8-
packages = [{ include = "nldiff" }] # This is how Poetry handles packages
8+
packages = [{ include = "nldiff" }]
99
classifiers = [
1010
"Programming Language:: Python:: 3",
1111
"Intended Audience:: Developers",
@@ -14,7 +14,7 @@ classifiers = [
1414
]
1515

1616
[tool.poetry.dependencies]
17-
python = "^3.8" # Redundant, but good practice to keep here too
17+
python = "^3.8"
1818
click = ">=8.0.0,<9"
1919
pyverilog = "*"
2020

0 commit comments

Comments
 (0)