From 6d1f2c935d07b9a6c5f747a559e3f12a6744cc39 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Fri, 15 Jan 2021 13:55:21 +0000 Subject: code formatting --- python/setup.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/python/setup.py b/python/setup.py index 9a73ecd..328e3f4 100644 --- a/python/setup.py +++ b/python/setup.py @@ -19,7 +19,9 @@ AUTHOR = "Gertjan van den Burg" DESCRIPTION = "Generate the same random numbers in R and Python" EMAIL = "gertjanvandenburg@gmail.com" LICENSE = "GPLv2" -LICENSE_TROVE = "License :: OSI Approved :: GNU General Public License v2 (GPLv2)" +LICENSE_TROVE = ( + "License :: OSI Approved :: GNU General Public License v2 (GPLv2)" +) NAME = "SyncRNG" REQUIRES_PYTHON = ">=3.6.0" URL = "https://github.com/GjjvdBurg/SyncRNG" @@ -82,12 +84,12 @@ setup( include_package_data=True, license=LICENSE, ext_modules=[ - Extension( - "_syncrng", - define_macros=[('TARGETPYTHON', '1')], - sources=["src/_syncrng.c"], - extra_compile_args=['-g'] - ) + Extension( + "_syncrng", + define_macros=[("TARGETPYTHON", "1")], + sources=["src/_syncrng.c"], + extra_compile_args=["-g"], + ) ], classifiers=[ # Trove classifiers -- cgit v1.2.3