Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-10 08:39:18

0001 #!/usr/bin/env python
0002 # Licensed under the Apache License, Version 2.0 (the "License");
0003 # you may not use this file except in compliance with the License.
0004 # You may obtain a copy of the License at
0005 # http://www.apache.org/licenses/LICENSE-2.0
0006 #
0007 # Authors:
0008 # - Fernando Barreiro Megino, fernando.harald.barreiro.megino@cern.ch, 2019
0009 # - Paul Nilsson, paul.nilsson@cern.ch, 2019-2020
0010 import sys
0011 
0012 from setuptools import setup, find_packages
0013 
0014 sys.path.insert(0, '.')
0015 
0016 # get release version
0017 with open('PILOTVERSION') as reader:
0018     release_version = reader.read()
0019 
0020 setup(
0021     name="panda-pilot",
0022     version=release_version,
0023     description='PanDA Pilot 2',
0024     long_description='''This package contains the PanDA Pilot 2 source code''',
0025     license='Apache License 2.0',
0026     author='PanDA Team',
0027     author_email='atlas-adc-panda@cern.ch',
0028     url='https://github.com/PanDAWMS/pilot2/wiki',
0029     python_requires='>=2.7',
0030     packages=find_packages(),
0031     install_requires=[],
0032     data_files=[],
0033     include_package_data=True,
0034     scripts=['pilot.py']
0035     )