From 9f4ccdd46ae9187c5f2140f46bd9be828be7c6a0 Mon Sep 17 00:00:00 2001 From: Damien Pretet Date: Sun, 23 Oct 2022 16:27:33 +0200 Subject: [PATCH] First Pypi Release --- README.md | 12 +++++++++++- pyproject.toml | 8 ++++---- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 198f3f2..075ec36 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,17 @@ Simple, Stupid](https://en.wikipedia.org/wiki/KISS_principle). Hope it can help you! -### How to install it +### How to Install + +#### Pypi + +SVUT is availble on Pypi and can be installed as following: + +```bash +pip3 install svut +``` + +#### Git Git clone the repository in a path. Set up the SVUT environment variable and add SVUT to `$PATH`: diff --git a/pyproject.toml b/pyproject.toml index 14cde78..1d8801a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta" [project] name = "svut" -version = "1.6.1" -authors = [ - { name="Damien Pretet", email="damien.pretet@me.com" }, -] +version = "1.8.0" +authors = [{ name="Damien Pretet", email="damien.pretet@me.com" }] description = "SystemVerilog Unit Test (SVUT)" readme = "README.md" +license = { file = "LICENSE" } requires-python = ">=3.7" +keywords = ["verilog", "systemverilog", "testing"] classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License",