Skip to content

Commit

Permalink
Add license in setup.py
Browse files Browse the repository at this point in the history
Currently setup.py doesn't populate the "license" field, which causes
`pip3 show edalize` to display this:

```
$ pip3 show edalize
Name: edalize
Version: 0.1.3
Summary: Edalize is a library for interfacing EDA tools, primarily for FPGA development
Home-page: https://github.com/olofk/edalize
Author: Olof Kindgren
Author-email: olof.kindgren@gmail.com
License: UNKNOWN
Location: /home/philipp/src/edalize
Requires: pytest, Jinja2
Required-by: fusesoc
```

After this change it looks like this:

```
$ pip3 show edalize
Name: edalize
Version: 0.1.3
Summary: Edalize is a library for interfacing EDA tools, primarily for FPGA development
Home-page: https://github.com/olofk/edalize
Author: Olof Kindgren
Author-email: olof.kindgren@gmail.com
License: BSD-2-Clause
Location: /home/philipp/src/edalize
Requires: pytest, Jinja2
Required-by: fusesoc
```
  • Loading branch information
imphil authored and olofk committed May 8, 2019
1 parent 39736f8 commit 1d9d71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def read(fname):
author = "Olof Kindgren",
author_email = "olof.kindgren@gmail.com",
description = ("Edalize is a library for interfacing EDA tools, primarily for FPGA development"),
license = "",
license = "BSD-2-Clause",
keywords = ["VHDL", "verilog", "EDA", "hdl", "rtl", "synthesis", "FPGA", "simulation", "Xilinx", "Altera"],
url = "https://github.com/olofk/edalize",
long_description=read('README.rst'),
Expand Down

0 comments on commit 1d9d71c

Please sign in to comment.