File indexing completed on 2026-04-10 08:39:18
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 import sys
0011
0012 from setuptools import setup, find_packages
0013
0014 sys.path.insert(0, '.')
0015
0016
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 )