From dfa0806f02775dc04e7835e8fc871b81a2bd786f Mon Sep 17 00:00:00 2001 From: Michal Simon Date: Tue, 10 Dec 2019 14:53:20 +0100 Subject: [PATCH] [Python] Change pkg name to xrootd. The package name in pypi is xrootd, however until now the installed package name was pyxrootd, fixes #1100 --- bindings/python/setup.py.in | 2 +- bindings/python/setup_pypi.py | 2 +- bindings/python/setup_standalone.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/python/setup.py.in b/bindings/python/setup.py.in index 57c568562fb..74fbe36a683 100644 --- a/bindings/python/setup.py.in +++ b/bindings/python/setup.py.in @@ -60,7 +60,7 @@ print('XRootD src include dir:', xrdsrcincdir) print('XRootD bin include dir:', xrdbinincdir) print('Version: ', version) -setup( name = 'pyxrootd', +setup( name = 'xrootd', version = version, author = 'XRootD Developers', author_email = 'xrootd-dev@slac.stanford.edu', diff --git a/bindings/python/setup_pypi.py b/bindings/python/setup_pypi.py index 831a3bdeabe..230903f31f8 100644 --- a/bindings/python/setup_pypi.py +++ b/bindings/python/setup_pypi.py @@ -42,7 +42,7 @@ def getincdir(): print 'XRootD include dir: ', xrdincdir print 'Version: ', version -setup( name = 'pyxrootd', +setup( name = 'xrootd', version = version, author = 'XRootD Developers', author_email = 'xrootd-dev@slac.stanford.edu', diff --git a/bindings/python/setup_standalone.py b/bindings/python/setup_standalone.py index f4032ed9d1c..7d07b5678b7 100644 --- a/bindings/python/setup_standalone.py +++ b/bindings/python/setup_standalone.py @@ -42,7 +42,7 @@ print('XRootD include dir: ', xrdincdir) print('Version: ', version) -setup( name = 'pyxrootd', +setup( name = 'xrootd', version = version, author = 'XRootD Developers', author_email = 'xrootd-dev@slac.stanford.edu',