From 0db47102848fc6179ec2a4bf7ae9b569db1845bb Mon Sep 17 00:00:00 2001 From: Oscar Gustafsson <oscar.gustafsson@gmail.com> Date: Tue, 21 Feb 2023 10:57:05 +0100 Subject: [PATCH] Update author list --- pyproject.toml | 2 +- setup.py | 20 +++++++++----------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 534c0b98..af4223ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "b-asic" description = "Better ASIC Toolbox" readme = "README.md" maintainers = [ - { name = "Oscar Gustafsson", email = "oscar.gustafsson@gmail.com" }, + { name = "Oscar Gustafsson", email = "oscar.gustafsson@liu.se" }, ] license = { file = "LICENSE" } requires-python = ">=3.8" diff --git a/setup.py b/setup.py index 47897662..637b4da4 100644 --- a/setup.py +++ b/setup.py @@ -57,9 +57,7 @@ class CMakeBuild(build_ext): print(f"=== Configuring {ext.name} ===") print(f"Temp dir: {self.build_temp}") print(f"Output dir: {cmake_output_dir}") - subprocess.check_call( - cmake_configure_argv, cwd=self.build_temp, env=env - ) + subprocess.check_call(cmake_configure_argv, cwd=self.build_temp, env=env) print(f"=== Building {ext.name} ===") print(f"Temp dir: {self.build_temp}") @@ -72,16 +70,16 @@ class CMakeBuild(build_ext): setuptools.setup( author=( - "Adam Jakobsson, Angus Lothian, Arvid Westerlund, Felix Goding, " - "Ivar Härnqvist, Jacob Wahlman, Kevin Scott, Rasmus Karlsson, " - "Oscar Gustafsson, Andreas Bolin" + "Adam Jakobsson, Angus Lothian, Arvid Westerlund, Felix Goding, Ivar Härnqvist," + " Jacob Wahlman, Kevin Scott, Rasmus Karlsson, Oscar Gustafsson, Andreas Bolin," + " Mikael Henriksson, Frans Skarman, Petter Källström, Olle Hansson" ), author_email=( - "adaja901@student.liu.se, anglo547@student.liu.se, " - "arvwe160@student.liu.se, felgo673@student.liu.se, " - "ivaha717@student.liu.se, jacwa448@student.liu.se, " - "kevsc634@student.liu.se, raska119@student.liu.se, " - "oscar.gustafsson@liu.se, andbo467@student.liu.se" + "adaja901@student.liu.se, anglo547@student.liu.se, arvwe160@student.liu.se," + " felgo673@student.liu.se, ivaha717@student.liu.se, jacwa448@student.liu.se," + " kevsc634@student.liu.se, raska119@student.liu.se, oscar.gustafsson@liu.se," + " andbo467@student.liu.se, mikael.henriksson@liu.se, frans.skarman@liu.se," + " petter.kallstrom@liu.se, olle.hansson@liu.se" ), ext_modules=[CMakeExtension("_b_asic")], cmdclass={"build_ext": CMakeBuild}, -- GitLab