From 61033dc291b043b6c21a8395db9942cfd1fadc31 Mon Sep 17 00:00:00 2001 From: Andre Merzky Date: Wed, 8 May 2024 01:18:15 +0200 Subject: [PATCH] cleanup --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index c8ce972e..afc4ed0f 100755 --- a/setup.py +++ b/setup.py @@ -24,15 +24,16 @@ scripts = list(glob('bin/*')) root = os.path.dirname(__file__) or '.' -readme = open("%s/README.md" % root, encoding='utf-8').read() -descr = "RADICAL-Cybertools utility library" +readme = open('%s/README.md' % root, encoding='utf-8').read() +descr = 'RADICAL-Cybertools utility library' keywords = ['radical', 'cybertools', 'utilities'] share = 'share/%s' % name data = [('%s/examples' % share, glob('examples/*.{py,cfg,json,sh}')), ('%s/examples/zmq' % share, glob('examples/zmq/*.md' )), ('%s/examples/zmq' % share, glob('examples/zmq/queue/*' )), - ('%s/examples/zmq' % share, glob('examples/zmq/pubsub/*' ))] + ('%s/examples/zmq' % share, glob('examples/zmq/pubsub/*' )) +] # ------------------------------------------------------------------------------