Skip to content
Snippets Groups Projects
Commit 17a6af2b authored by David Hendriks's avatar David Hendriks
Browse files

cleaned with black linter

parent bd87f998
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ setup(
version="1.0",
description="This is a python API for binary_c by Rob Izzard and collaborators",
author="Jeff Andrews and Robert Izzard and David Hendriks",
author_email="andrews@physics.uoc.gr and r.izzard@surrey.ac.uk and rob.izzard@gmail.com and dhendriks93@gmail.com",
author_email="andrews@physics.uoc.gr and r.izzard@surrey.ac.uk and rob.izzard@gmail.com and davidhendriks93@gmail.com",
license="",
ext_modules=[
Extension(
......@@ -68,14 +68,22 @@ setup(
include_dirs=[
os.environ["BINARY_C"] + "/src",
os.environ["BINARY_C"] + "/src/API",
'include',
] + binary_c_incdirs,
libraries=
["binary_c"] + binary_c_libs + ["binary_c_api"],
library_dirs=
[os.environ["BINARY_C"] + "/src", "./", os.path.join(CWD,'lib/')] + binary_c_libdirs,
runtime_library_dirs=
[os.environ["BINARY_C"] + "/src", "./", os.path.join(CWD,'lib/')] + binary_c_libdirs,
"include",
]
+ binary_c_incdirs,
libraries=["binary_c"] + binary_c_libs + ["binary_c_api"],
library_dirs=[
os.environ["BINARY_C"] + "/src",
"./",
os.path.join(CWD, "lib/"),
]
+ binary_c_libdirs,
runtime_library_dirs=[
os.environ["BINARY_C"] + "/src",
"./",
os.path.join(CWD, "lib/"),
]
+ binary_c_libdirs,
define_macros=[] + binary_c_define_macros,
extra_objects=[],
extra_compile_args=[],
......
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