/usr/lib/pegasus/python/pegasus-setup.py is in pegasus-wms 4.0.1+dfsg-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | """
Installation script for Pegasus Python library
Author: Dan Gunter <dkgunter@lbl.gov>
"""
try:
from setuptools import setup
except:
from distutils.core import setup
from glob import glob
import os
import sys
VERSION = os.environ.get('PEGASUS_VERSION','trunk')
# Main function
# -------------
setup(name = "Pegasus",
version=VERSION,
packages = ["Pegasus",
"Pegasus.monitoring",
"Pegasus.plots_stats",
"Pegasus.plots_stats.plots",
"Pegasus.plots_stats.stats",
"Pegasus.test",
"Pegasus.tools"],
ext_modules = [],
package_data = {},
scripts = [ ],
install_requires=[ ],
# metadata for upload to PyPI
author = "Pegasus Team",
author_email = "deelman@isi.edu",
maintainer = "Karan Vahi",
maintainer_email = "vahi@isi.edu",
description = "Pegasus Python library",
long_description = "",
license = "LBNL Open-Source",
keywords = "workflow",
url = "https://confluence.pegasus.isi.edu/display/pegasus/Home",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: Other/Proprietary License",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Workflow",
"Topic :: System :: Monitoring",
],
)
|