Skip to content

Commit

Permalink
autopep8 action fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mesmith75 authored Dec 8, 2023
1 parent 1f3afdf commit 5eb44ba
Showing 1 changed file with 54 additions and 32 deletions.
86 changes: 54 additions & 32 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

_gangaVersion = '8.4.2'


def version():
return _gangaVersion

Expand Down Expand Up @@ -75,7 +76,7 @@ def run(self):
pythonPackages.append('ganga/GangaGUI')


install_requires=[
install_requires = [
'ipython>=5.0.0',
'jedi==0.17.2',
'httplib2>=0.8',
Expand All @@ -97,34 +98,55 @@ def run(self):
"gdown",
]
if sys.platform != 'darwin':
install_requires.append("htcondor")


setup(name='ganga',
description='Job management tool',
long_description=readme(),
url='https://github.com/ganga-devs/ganga',
version=version(),
author='Ganga Developers',
author_email='[email protected]',
license='GPL v2',
scripts=['bin/ganga', 'bin/ganga-gui'],
package_dir={'ganga':'ganga', 'GangaRelease':'ganga/GangaRelease', 'GangaGUI':'ganga/GangaGUI'},
packages=pythonPackages,
install_requires=install_requires,
extras_require={
'dev': ['coverage', 'pytest', 'pytest-cov', 'pytest-pylint', 'pytest-mock'],
'profiler' : ['memory_profiler'],
'LHCb' : ['LbDevTools']},
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
include_package_data=True,
package_data={'GangaCore': ['Runtime/HEAD_CONFIG.INI'], 'GangaRelease':['ReleaseNotes-*', 'tools/check-new-ganga.py', 'tools/ganga-cvmfs-install.sh', 'tools/ganga-cvmfs-install-dev.sh'], 'GangaGUI':['gui/templates/*.html', 'gui/static/css/main.css', 'gui/static/js/*.js']},
cmdclass={
'tests': RunTestsCommand,
},
)
install_requires.append("htcondor")


setup(
name='ganga',
description='Job management tool',
long_description=readme(),
url='https://github.com/ganga-devs/ganga',
version=version(),
author='Ganga Developers',
author_email='[email protected]',
license='GPL v2',
scripts=[
'bin/ganga',
'bin/ganga-gui'],
package_dir={
'ganga': 'ganga',
'GangaRelease': 'ganga/GangaRelease',
'GangaGUI': 'ganga/GangaGUI'},
packages=pythonPackages,
install_requires=install_requires,
extras_require={
'dev': [
'coverage',
'pytest',
'pytest-cov',
'pytest-pylint',
'pytest-mock'],
'profiler': ['memory_profiler'],
'LHCb': ['LbDevTools']},
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'],
include_package_data=True,
package_data={
'GangaCore': ['Runtime/HEAD_CONFIG.INI'],
'GangaRelease': [
'ReleaseNotes-*',
'tools/check-new-ganga.py',
'tools/ganga-cvmfs-install.sh',
'tools/ganga-cvmfs-install-dev.sh'],
'GangaGUI': [
'gui/templates/*.html',
'gui/static/css/main.css',
'gui/static/js/*.js']},
cmdclass={
'tests': RunTestsCommand,
},
)

0 comments on commit 5eb44ba

Please sign in to comment.