From 256acea4722c734f3dadbd315311252789dfda81 Mon Sep 17 00:00:00 2001 From: Martin Reinecke Date: Wed, 3 Jun 2020 15:49:07 +0200 Subject: [PATCH] cleanup --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8a2487e..0d0a485 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ else: extra_compile_args += ['-Wfatal-errors', '-Wfloat-conversion', '-W', '-Wall', '-Wstrict-aliasing=2', '-Wwrite-strings', '-Wredundant-decls', '-Woverloaded-virtual', '-Wcast-qual', '-Wcast-align', '-Wpointer-arith'] python_module_link_args += ['-march=native', '-Wl,-rpath,$ORIGIN', '-s'] -# if you don't want debugging info, add "-s" to python_module_link_args +# if you want debugging info, remove the "-s" from python_module_link_args def get_extension_modules(): depfiles = _get_files_by_suffix('.', 'h') + _get_files_by_suffix('.', 'cc') + ['setup.py'] @@ -58,11 +58,13 @@ def get_extension_modules(): setup(name=pkgname, version='0.1.0', description='Definitely useful code collection', + url='https://gitlab.mpcdf.mpg.de/mtr/cxxbase', include_package_data=True, author='Martin Reinecke', author_email='martin@mpa-garching.mpg.de', packages=[], setup_requires=['numpy>=1.17.0', 'pybind11>=2.5.0'], ext_modules=get_extension_modules(), - install_requires=['numpy>=1.17.0', 'pybind11>=2.5.0'] + install_requires=['numpy>=1.17.0', 'pybind11>=2.5.0'], + license="GPLv2", ) -- GitLab