From 064755f0eaaffb4c16af2dbcbf2a7049d2c73d4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Nguyen?= Date: Tue, 5 Apr 2022 14:26:01 +0200 Subject: [PATCH] Update copyright notice and project URL. --- LICENSE.txt | 3 ++- setup.py | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index d9d87bc..cf631b3 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,5 @@ -Copyright (C) 2018-2019 LambdaConcept +Copyright (C) Jean-François Nguyen +Copyright (C) 2018-2021 LambdaConcept Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/setup.py b/setup.py index 9e34aeb..fa9db20 100644 --- a/setup.py +++ b/setup.py @@ -6,14 +6,14 @@ version="0.1", description="A 32-bit RISC-V soft processor", author="Jean-François Nguyen", - author_email="jf@lambdaconcept.com", + author_email="jf@jfng.fr", license="BSD", python_requires=">=3.6", install_requires=["amaranth>=0.2,<0.5"], extras_require={ "debug": ["jtagtap"] }, packages=find_packages(), project_urls={ - "Source Code": "https://github.com/lambdaconcept/minerva", - "Bug Tracker": "https://github.com/lambdaconcept/minerva/issues" + "Source Code": "https://github.com/minerva-cpu/minerva", + "Bug Tracker": "https://github.com/minerva-cpu/minerva/issues" } )