Пример #1
0
#
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency
from setuptools import find_packages

dep = Dependency()
dep.add_package()

ROOTPKG = "askap"
PKGNAME = "iceutils"

setup(
    name="%s.%s" % (ROOTPKG, PKGNAME),
    version='current',
    description='ASKAP utilities to interact with Ice',
    author='Malte Marquarding',
    author_email='*****@*****.**',
    url='http://svn.atnf.csiro.au/askap',
    keywords=['ASKAP', 'Base', 'Ice'],
    long_description=
    '''Various helper function/classes to use with ZeroC Ice''',
    packages=find_packages(),
    namespace_packages=[ROOTPKG],
    license='GPL',
    zip_safe=0,
    dependency=dep,
    scripts=["scripts/igsession.py", "scripts/ice-session.py"],

    #test_suite = "nose.collector",
)
Пример #2
0
PKGNAME = 'evaluation'

setup(
    name='%s.%s.%s' % (ROOTPKG, COMPONENT, PKGNAME),
    version='current',
    description=
    'Scripts to evaluate the results of the imaging and source finding',
    author='Matthew Whiting',
    author_email='*****@*****.**',
    url='http://svn.atnf.csiro.au/askap',
    keywords=['ASKAP', 'Analysis'],
    long_description='''\
These scripts take the results from the source-finding and look for any systematic effects 
such as positional offsets or flux errors compared to some reference catalogue. 
They then produce nifty plots that enable the user to quickly identify problems.
''',
    packages=find_packages(),
    namespace_packages=[ROOTPKG, '%s.%s' % (ROOTPKG, COMPONENT)],
    license='GPL',
    zip_safe=1,
    dependency=dep,
    # Uncomment if using scripts (applications which go in bin)
    scripts=[
        "scripts/fluxEval.py", "scripts/plotEval.py", "scripts/imageEval.py",
        "scripts/finderEval.py", "scripts/plotEvalOld.py",
        "scripts/fluxEvalOld.py", "scripts/makeThumbnailImage.py"
    ],
    # Uncomment if using unit tests
    #      test_suite = "nose.collector",
)
Пример #3
0
import os
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency

dep = Dependency(silent=False)
dep.DEPFILE = "../dependencies"
dep.add_package()

setup(name="testpkg", dependency=dep, test_suite="nose.collector")
Пример #4
0
# or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
#
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency
from setuptools import find_packages

dep = Dependency()
dep.add_package()

PKGNAME = ROOTPKG = "current"

setup(
    name=PKGNAME,
    description='ASKAP Central Processor Administrator Documentation',
    author='ASKAP Software and Computing',
    author_email='*****@*****.**',
    url='http://svn.atnf.csiro.au/askap',
    keywords=['ASKAP', 'central processor'],
    license='GPL',
    dependency=dep,
)
Пример #5
0
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
#
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency
from setuptools import find_packages

dep = Dependency()
dep.add_package()

PKGNAME = ROOTPKG = "askap"

setup(name = PKGNAME,
      version = 'current',
      description = 'ASKAP basic modules',
      author = 'Malte Marquarding',
      author_email = '*****@*****.**',
      url = 'http://svn.atnf.csiro.au/askap',
      keywords = ['ASKAP', 'logging', 'Base'],
      long_description = '''General basic ASKAP modules such as logging
''',
      packages = find_packages(),
      license = 'GPL',
      zip_safe = 0,
      dependency = dep,
      test_suite = "nose.collector",
)
Пример #6
0
__author__ = "*****@*****.**"

from askapdev.rbuild.setup import setup

setup (
    name         = "askapdev.templates",
    description  = "scripts and templates for creating package skeletons",
    author       = "Tony Maher",
    author_email = "*****@*****.**",
    packages     = ["askapdev",
                    "askapdev.templates",
                    "templates",
                   ],
    package_data = {"templates": ["cpp/*.tmpl", "java/*.tmpl",
                                  "python/*/*.tmpl", "epics/*.tmpl"]},
    scripts      = ["scripts/create_cpkg", "scripts/create_javapkg",
                    "scripts/create_pypkg", "scripts/create_epicspkg"],
    zip_safe     = False,
    namespace_packages = ['askapdev'],
)
Пример #7
0
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency
from setuptools import find_packages

dep = Dependency()
dep.add_package()

ROOTPKG   = 'askap'
COMPONENT = 'ingest'

setup(name = '%s.%s' % (ROOTPKG, COMPONENT),
      version = 'current',
      description = 'ASKAP CP Manager module',
      author = 'Xinyu Wu',
      author_email = '*****@*****.**',
      url = 'http://svn.atnf.csiro.au/askap',
      keywords = ['ASKAP', 'CP Manager'],
      long_description = '''@@@long_description@@@''',
      packages = find_packages(),
      namespace_packages = [ROOTPKG,],
      license = 'GPL',
      zip_safe = 0,
      dependency = dep,
      scripts = ["scripts/ingestservice.py"],

      # Uncomment if using unit tests
     test_suite = "nose.collector"
)
Пример #8
0
__author__ = "*****@*****.**"

from askapdev.rbuild.setup import setup

setup (
    name         = "askapdev.rbuild",
    description  = "scripts for recursively building packages",
    author       = "Tony Maher",
    author_email = "*****@*****.**",
    packages     = [ "askapdev",
                     "askapdev.rbuild",
                     "askapdev.rbuild.builders",
                     "askapdev.rbuild.dependencies",
                     "askapdev.rbuild.utils",
                     "askapdev.rbuild.setup",
                     "askapdev.rbuild.setup.commands",
                     "askapdev.rbuild.debian",
                     "templates",
                   ],
    package_data = { "templates": ["*"], 
                     "askapdev.rbuild.debian": 
                     ["data/[!.]*"] },
    scripts      = [ "scripts/rbuild",
                     "scripts/debianise.py",
                     "scripts/askap-debpackage",
                   ],
    zip_safe     = False,
    #
    namespace_packages = ['askapdev'],
)
Пример #9
0
# or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
#
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency
from setuptools import find_packages

dep = Dependency()
dep.add_package()

PKGNAME = ROOTPKG = "current"

setup(
    name=PKGNAME,
    description='ASKAP Central Processor User Guide',
    author='ASKAP Software and Computing',
    author_email='*****@*****.**',
    url='http://svn.atnf.csiro.au/askap',
    keywords=['ASKAP', 'user guide'],
    license='GPL',
    dependency=dep,
)
Пример #10
0
__author__ = "*****@*****.**"

from askapdev.rbuild.setup import setup

setup(
    name="askapdev.sphinx",
    description="sphinx utilities",
    author="Malte Marquarding",
    author_email=__author__,
    packages=[
        "askapdev",
        "askapdev.sphinx",
    ],
    zip_safe=True,
    namespace_packages=['askapdev'],
)
Пример #11
0
PKGNAME = "slice"

setup(
    name="%s.%s" % (ROOTPKG, PKGNAME),
    version='current',
    description='ASKAP package for slice2py generated code.',
    author='Malte Marquarding',
    author_email='*****@*****.**',
    url='http://svn.atnf.csiro.au/askap',
    keywords=['ASKAP', 'Interfaces', 'Ice'],
    long_description='',
    packages=find_packages(),
    namespace_packages=[ROOTPKG],
    license='GPL',
    zip_safe=0,
    dependency=dep,
    cmdclass={
        'build_ice': build_ice,
        'build_py': build_py2,
        'clean': clean_ice
    },
    options={
        'build_ice': {
            'interfaces': slice_files,
            'dep': dep,
            'package': 'askap.slice'
        }
    },
    #test_suite = "nose.collector",
)
Пример #12
0
__author__ = "*****@*****.**"

from askapdev.rbuild.setup import setup

setup (
    name         = "askapdev.sphinx",
    description  = "sphinx utilities",
    author       = "Malte Marquarding",
    author_email = __author__,
    packages     = [ "askapdev",
                     "askapdev.sphinx",
                   ],
    zip_safe     = True,
    namespace_packages = ['askapdev'],
)
Пример #13
0
dep = Dependency()
dep.add_package()

ROOTPKG   = 'askap'
COMPONENT = 'analysis'
PKGNAME   = 'evaluation'

setup(name = '%s.%s.%s' % (ROOTPKG, COMPONENT, PKGNAME),
      version = 'current',
      description = 'Scripts to evaluate the results of the imaging and source finding',
      author = 'Matthew Whiting',
      author_email = '*****@*****.**',
      url = 'http://svn.atnf.csiro.au/askap',
      keywords = ['ASKAP', 'Analysis'],
      long_description = '''\
These scripts take the results from the source-finding and look for any systematic effects 
such as positional offsets or flux errors compared to some reference catalogue. 
They then produce nifty plots that enable the user to quickly identify problems.
''',
      packages = find_packages(),
      namespace_packages = [ROOTPKG, '%s.%s' % (ROOTPKG, COMPONENT)],
      license = 'GPL',
      zip_safe = 1,
      dependency = dep,
# Uncomment if using scripts (applications which go in bin) 
      scripts = ["scripts/fluxEval.py", "scripts/plotEval.py", "scripts/imageEval.py", "scripts/finderEval.py", "scripts/plotEvalOld.py", "scripts/fluxEvalOld.py"],
# Uncomment if using unit tests
#      test_suite = "nose.collector",
)
Пример #14
0
    from askapdev.rbuild.dependencies import Dependency
    dep = Dependency()
    dep.add_package()
except ImportError:
    from setuptools import setup
    dep = None

from setuptools import find_packages


PKGNAME = "parset"
ROOTPKG = "askap"

setup(name='%s.%s' % (ROOTPKG, PKGNAME),
      version='current',
      description='LOFAR ParameterSet parser',
      author='Malte Marquarding',
      author_email='*****@*****.**',
      url='http://svn.atnf.csiro.au/askap',
      keywords=['ASKAP', 'ParameterSet', 'Base', 'LOFAR'],
      long_description='''This package provides native python parsing of LOFAR ParamterSets.
''',
      packages=find_packages(),
      namespace_packages=[ROOTPKG],
      license='GPL',
      zip_safe=1,
      dependency=dep,
      scripts=["scripts/doc_parset.py"],
      test_suite="nose.collector",
      )
Пример #15
0
__author__ = "*****@*****.**"

from askapdev.rbuild.setup import setup

setup(
    name="askapdev.templates",
    description="scripts and templates for creating package skeletons",
    author="Tony Maher",
    author_email="*****@*****.**",
    packages=[
        "askapdev",
        "askapdev.templates",
        "templates",
    ],
    package_data={
        "templates":
        ["cpp/*.tmpl", "java/*.tmpl", "python/*/*.tmpl", "epics/*.tmpl"]
    },
    scripts=[
        "scripts/create_cpkg", "scripts/create_javapkg",
        "scripts/create_pypkg", "scripts/create_epicspkg"
    ],
    zip_safe=False,
    namespace_packages=['askapdev'],
)
Пример #16
0
setup(
    name='%s.%s.%s' % (ROOTPKG, COMPONENT, PKGNAME),
    version='current',
    description='Scripts to create simulated data catalogues and images',
    author='MatthewWhiting',
    author_email='*****@*****.**',
    url='http://svn.atnf.csiro.au/askap',
    keywords=[
        'ASKAP',
    ],
    long_description='''
This package contains some simulated data catalogues, 
as well as scripts to make more from the SKADS simulations. 
There are also scripts to make subsets of the catalogues and 
annotation file for use with the karma package.
''',
    packages=find_packages(),
    namespace_packages=[ROOTPKG, '%s.%s' % (ROOTPKG, COMPONENT)],
    license='GPL',
    zip_safe=0,
    dependency=dep,
    # Uncomment if using scripts (applications which go in bin)
    scripts=[
        "scripts/createSKADS.py", "scripts/createSKADSspectralline.py",
        "scripts/createSubLists.py", "scripts/setupAllModels.py",
        "scripts/convolveModel.py", "scripts/createComparisonCatalogue.py",
        "scripts/build_S3SAX_mySQLdb.py",
        "scripts/makeScintillationLightcurves.py",
        "scripts/scintillationLightcurveTest.py"
    ],
    # Uncomment if using unit tests
    #      test_suite = "nose.collector",
)
Пример #17
0
# This is part of the normal Python documentation.

from askapdev.rbuild.setup import setup
from setuptools import find_packages

ROOTPKG = 'askapdev'
PKGNAME = 'epicsdb'

setup(name             = ".".join([ROOTPKG,PKGNAME]),
      description      = 'csv to EPICS DB Generator',
      author           = 'Craig Haskins',
      author_email     = '*****@*****.**',
      url              = 'http://pm.atnf.csiro.au/askap/projects/cmpt/wiki/DGS2EPICS_register_file',
      keywords         = ['ASKAP', 'EPICS'],
      long_description = '''Generate EPICS DB file from custom CSV format from DGS Group''',
      license          = 'GPL',
      zip_safe         = False,
      packages = find_packages(),
      namespace_packages = [ROOTPKG],
      #
      # Uncomment and edit the '###' lines as required.
      # Scripts will be installed in bin.
      scripts          = ["scripts/csv2epics.py", "scripts/adbe2epics.py"],
      # List any shared modules that the scripts wish to use here.
      # The names here must match files in modules subdirectory with
      # '.py' extension.
      ### py_modules       = ["common",]
      # Uncomment if using unit tests
      test_suite = "nose.collector",
     )
Пример #18
0
dep = Dependency()
dep.add_package()

slice_files = glob.glob('../../slice/current/*.ice')

ROOTPKG = "askap"
PKGNAME = "slice"

setup(name = "%s.%s" % (ROOTPKG, PKGNAME),
      version = 'current',
      description = 'ASKAP package for slice2py generated code.',
      author = 'Malte Marquarding',
      author_email = '*****@*****.**',
      url = 'http://svn.atnf.csiro.au/askap',
      keywords = ['ASKAP', 'Interfaces', 'Ice'],
      long_description = '',
      packages = find_packages(),
      namespace_packages = [ROOTPKG],
      license = 'GPL',
      zip_safe = 0,
      dependency = dep,
      cmdclass = {'build_ice': build_ice, 
                  'build_py': build_py2,
                  'clean': clean_ice},
      options = { 'build_ice' : { 'interfaces' : slice_files,
                                  'dep' : dep ,
                                  'package' : 'askap.slice' }},
      #test_suite = "nose.collector",
)
Пример #19
0
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
#
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency
from setuptools import find_packages

dep = Dependency()
dep.add_package()

PKGNAME = "parset"
ROOTPKG = "askap"

setup(name = '%s.%s' % (ROOTPKG, PKGNAME),
      version = 'current',
      description = 'LOFAR ParameterSet parser',
      author = 'Malte Marquarding',
      author_email = '*****@*****.**',
      url = 'http://svn.atnf.csiro.au/askap',
      keywords = ['ASKAP', 'ParameterSet', 'Base', 'LOFAR'],
      long_description = '''This package provides native python parsing of LOFAR ParamterSets.
''',
      packages = find_packages(),
      namespace_packages = [ROOTPKG],
      license = 'GPL',
      zip_safe = 1,
      dependency = dep,
      scripts = ["scripts/doc_parset.py"],
      test_suite = "nose.collector",
)
Пример #20
0
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency

dep = Dependency(silent=False)
dep.DEPFILE = "../dependencies"
dep.add_package()

setup(name = "logappender_test",
      dependency = dep,
      test_suite = "nose.collector",
)
Пример #21
0
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency
from setuptools import find_packages

dep = Dependency()
dep.add_package()

ROOTPKG = "askap"
PKGNAME = "loghandlers"

setup(
    name="%s.%s" % (ROOTPKG, PKGNAME),
    version='current',
    description='ASKAP logging handler extensions',
    author='Malte Marquarding',
    author_email='*****@*****.**',
    url='http://svn.atnf.csiro.au/askap',
    keywords=['ASKAP', 'logging', 'Base', 'Ice'],
    long_description=
    '''Adddional logging handler for python. This includes and ice handler.''',
    packages=find_packages(),
    namespace_packages=[ROOTPKG],
    license='GPL',
    zip_safe=0,
    dependency=dep,
    scripts=["scripts/askap_logsubscriber.py"],
    package_data={"": ["config/*.ice", "config/*.ice_cfg"]},
    test_suite="nose.collector",
)
Пример #22
0
setup(name = '%s.%s.%s' % (ROOTPKG, COMPONENT, PKGNAME),
      version = 'current',
      description = 'Scripts to create simulated data catalogues and images',
      author = 'MatthewWhiting',
      author_email = '*****@*****.**',
      url = 'http://svn.atnf.csiro.au/askap',
      keywords = ['ASKAP', ],
      long_description = '''
This package contains some simulated data catalogues, 
as well as scripts to make more from the SKADS simulations. 
There are also scripts to make subsets of the catalogues and 
annotation file for use with the karma package.
''',
      packages = find_packages(),
      namespace_packages = [ROOTPKG, '%s.%s' % (ROOTPKG, COMPONENT)],
      license = 'GPL',
      zip_safe = 0,
      dependency = dep,
# Uncomment if using scripts (applications which go in bin) 
      scripts = ["scripts/createSKADS.py", 
                 "scripts/createSKADSspectralline.py", 
                 "scripts/createSubLists.py", 
                 "scripts/setupAllModels.py", 
                 "scripts/convolveModel.py",
                 "scripts/createComparisonCatalogue.py",
                 "scripts/build_S3SAX_mySQLdb.py",
                 "scripts/makeScintillationLightcurves.py",
                 "scripts/scintillationLightcurveTest.py"],
# Uncomment if using unit tests
#      test_suite = "nose.collector",
)
Пример #23
0
# published by the Free Software Foundation; either version 2 of the License
# or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
#
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency
from setuptools import find_packages

dep = Dependency()
dep.add_package()

PKGNAME = ROOTPKG = "current"

setup(name = PKGNAME,
      description = 'ASKAP Central Processor Administrator Documentation',
      author = 'ASKAP Software and Computing',
      author_email = '*****@*****.**',
      url = 'http://svn.atnf.csiro.au/askap',
      keywords = ['ASKAP', 'central processor'],
      license = 'GPL',
      dependency = dep,
)
Пример #24
0
from askapdev.rbuild.dependencies import Dependency
from setuptools import find_packages

dep = Dependency()
dep.add_package()

ROOTPKG = 'askap'
COMPONENT = 'smsclient'

setup(
    name='%s.%s' % (ROOTPKG, COMPONENT),
    version='current',
    description='ASKAP Skymodel Service Client',
    author='Daniel Collins',
    author_email='*****@*****.**',
    url='http://svn.atnf.csiro.au/askap',
    keywords=['ASKAP', 'Skymodel', 'client', 'SMS'],
    long_description='''@@@long_description@@@''',
    packages=find_packages(),
    namespace_packages=[
        ROOTPKG,
    ],
    license='GPL',
    zip_safe=True,
    dependency=dep,
    test_suite="nose.collector",
    install_requires=[
        'setuptools',
    ],
)
Пример #25
0
from setuptools import find_packages

ROOTPKG = 'askapdev'
PKGNAME = 'epicsdb'

setup(
    name=".".join([ROOTPKG, PKGNAME]),
    description='csv to EPICS DB Generator',
    author='Craig Haskins',
    author_email='*****@*****.**',
    url=
    'http://pm.atnf.csiro.au/askap/projects/cmpt/wiki/DGS2EPICS_register_file',
    keywords=['ASKAP', 'EPICS'],
    long_description=
    '''Generate EPICS DB file from custom CSV format from DGS Group''',
    license='GPL',
    zip_safe=False,
    packages=find_packages(),
    namespace_packages=[ROOTPKG],
    #
    # Uncomment and edit the '###' lines as required.
    # Scripts will be installed in bin.
    scripts=["scripts/csv2epics.py", "scripts/adbe2epics.py"],
    # List any shared modules that the scripts wish to use here.
    # The names here must match files in modules subdirectory with
    # '.py' extension.
    ### py_modules       = ["common",]
    # Uncomment if using unit tests
    test_suite="nose.collector",
)
Пример #26
0
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency

dep = Dependency(silent=False)
dep.DEPFILE = "../dependencies"
dep.add_package()

setup(
    name="logappender_test",
    dependency=dep,
    test_suite="nose.collector",
)
Пример #27
0
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
#
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency
from setuptools import find_packages

dep = Dependency()
dep.add_package()

PKGNAME = ROOTPKG = "askap"

setup(
    name=PKGNAME,
    version='current',
    description='ASKAP basic modules',
    author='Malte Marquarding',
    author_email='*****@*****.**',
    url='http://svn.atnf.csiro.au/askap',
    keywords=['ASKAP', 'logging', 'Base'],
    long_description='''General basic ASKAP modules such as logging
''',
    packages=find_packages(),
    license='GPL',
    zip_safe=0,
    dependency=dep,
    test_suite="nose.collector",
)
Пример #28
0
setup(
    name="askapdev.rbuild",
    description="scripts for recursively building packages",
    author="Tony Maher",
    author_email="*****@*****.**",
    packages=[
        "askapdev",
        "askapdev.rbuild",
        "askapdev.rbuild.builders",
        "askapdev.rbuild.dependencies",
        "askapdev.rbuild.utils",
        "askapdev.rbuild.setup",
        "askapdev.rbuild.setup.commands",
        "askapdev.rbuild.debian",
        "templates",
    ],
    package_data={
        "templates": ["*"],
        "askapdev.rbuild.debian": ["data/[!.]*"]
    },
    scripts=[
        "scripts/rbuild",
        "scripts/debianise.py",
        "scripts/askap-debpackage",
    ],
    zip_safe=False,
    #
    namespace_packages=['askapdev'],
)
Пример #29
0
# published by the Free Software Foundation; either version 2 of the License
# or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
#
from askapdev.rbuild.setup import setup
from askapdev.rbuild.dependencies import Dependency
from setuptools import find_packages

dep = Dependency()
dep.add_package()

PKGNAME = ROOTPKG = "current"

setup(name = PKGNAME,
      description = 'ASKAP Central Processor User Guide',
      author = 'ASKAP Software and Computing',
      author_email = '*****@*****.**',
      url = 'http://svn.atnf.csiro.au/askap',
      keywords = ['ASKAP', 'user guide'],
      license = 'GPL',
      dependency = dep,
)