diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2021-01-15 13:55:21 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2021-01-15 13:55:21 +0000 |
| commit | 6d1f2c935d07b9a6c5f747a559e3f12a6744cc39 (patch) | |
| tree | ef0d36aff6518d59011965e7103afca1c9104b2e | |
| parent | remove duplicate license trove (diff) | |
| download | SyncRNG-6d1f2c935d07b9a6c5f747a559e3f12a6744cc39.tar.gz SyncRNG-6d1f2c935d07b9a6c5f747a559e3f12a6744cc39.zip | |
code formatting
| -rw-r--r-- | python/setup.py | 16 |
1 files 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 |
