Skip to content
Snippets Groups Projects
Commit 0db47102 authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Update author list

parent 8ea03312
No related branches found
No related tags found
1 merge request!219Update author list
Pipeline #90098 passed
...@@ -3,7 +3,7 @@ name = "b-asic" ...@@ -3,7 +3,7 @@ name = "b-asic"
description = "Better ASIC Toolbox" description = "Better ASIC Toolbox"
readme = "README.md" readme = "README.md"
maintainers = [ maintainers = [
{ name = "Oscar Gustafsson", email = "oscar.gustafsson@gmail.com" }, { name = "Oscar Gustafsson", email = "oscar.gustafsson@liu.se" },
] ]
license = { file = "LICENSE" } license = { file = "LICENSE" }
requires-python = ">=3.8" requires-python = ">=3.8"
......
...@@ -57,9 +57,7 @@ class CMakeBuild(build_ext): ...@@ -57,9 +57,7 @@ class CMakeBuild(build_ext):
print(f"=== Configuring {ext.name} ===") print(f"=== Configuring {ext.name} ===")
print(f"Temp dir: {self.build_temp}") print(f"Temp dir: {self.build_temp}")
print(f"Output dir: {cmake_output_dir}") print(f"Output dir: {cmake_output_dir}")
subprocess.check_call( subprocess.check_call(cmake_configure_argv, cwd=self.build_temp, env=env)
cmake_configure_argv, cwd=self.build_temp, env=env
)
print(f"=== Building {ext.name} ===") print(f"=== Building {ext.name} ===")
print(f"Temp dir: {self.build_temp}") print(f"Temp dir: {self.build_temp}")
...@@ -72,16 +70,16 @@ class CMakeBuild(build_ext): ...@@ -72,16 +70,16 @@ class CMakeBuild(build_ext):
setuptools.setup( setuptools.setup(
author=( author=(
"Adam Jakobsson, Angus Lothian, Arvid Westerlund, Felix Goding, " "Adam Jakobsson, Angus Lothian, Arvid Westerlund, Felix Goding, Ivar Härnqvist,"
"Ivar Härnqvist, Jacob Wahlman, Kevin Scott, Rasmus Karlsson, " " Jacob Wahlman, Kevin Scott, Rasmus Karlsson, Oscar Gustafsson, Andreas Bolin,"
"Oscar Gustafsson, Andreas Bolin" " Mikael Henriksson, Frans Skarman, Petter Källström, Olle Hansson"
), ),
author_email=( author_email=(
"adaja901@student.liu.se, anglo547@student.liu.se, " "adaja901@student.liu.se, anglo547@student.liu.se, arvwe160@student.liu.se,"
"arvwe160@student.liu.se, felgo673@student.liu.se, " " felgo673@student.liu.se, ivaha717@student.liu.se, jacwa448@student.liu.se,"
"ivaha717@student.liu.se, jacwa448@student.liu.se, " " kevsc634@student.liu.se, raska119@student.liu.se, oscar.gustafsson@liu.se,"
"kevsc634@student.liu.se, raska119@student.liu.se, " " andbo467@student.liu.se, mikael.henriksson@liu.se, frans.skarman@liu.se,"
"oscar.gustafsson@liu.se, andbo467@student.liu.se" " petter.kallstrom@liu.se, olle.hansson@liu.se"
), ),
ext_modules=[CMakeExtension("_b_asic")], ext_modules=[CMakeExtension("_b_asic")],
cmdclass={"build_ext": CMakeBuild}, cmdclass={"build_ext": CMakeBuild},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment