NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

Changeset 296

Show
Ignore:
Timestamp:
12/08/09 16:29:10
Author:
cbc
Message:

Merge scintec-branch.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sodar/trunk

    • Property svn:externals set to ez_setup svn://svn.eby-sarna.com/svnroot/ez_setup
    • Property svn:ignore set to *~ *.pyc *.pyo #*# build dist *.egg-info
  • sodar/trunk/setup.py

    r293 r296  
    1 #!/usr/bin/python 
    21""" 
    32Installer for sodar package. 
    43""" 
    54 
    6 from distutils.core import setup 
     5__author__ = 'Chris Calloway' 
     6__email__ = 'cbc@chriscalloway.org' 
     7__copyright__ = 'Copyright 2009 UNC-CH Department of Marine Science' 
     8__license__ = 'GPL2' 
     9 
     10from setuptools import setup, find_packages 
     11 
     12version = '2.0' 
    713 
    814setup(name='sodar', 
    9       version='1.0', 
    10       description='Process sodar wind profiler data.', 
     15      version=version, 
     16      description='Process sodar wind profile data.', 
     17      long_description=open('README.txt').read() + "\n" + 
     18                       open('HISTORY.txt').read(), 
     19      classifiers=[ 
     20          'Development Status :: 5 - Production/Stable', 
     21          'Environment :: Console', 
     22          'Intended Audience :: Science/Research', 
     23          'License :: OSI Approved :: GNU General Public License (GPL)', 
     24          'Programming Language :: Python', 
     25          'Topic :: Scientific/Engineering', 
     26          'Topic :: Scientific/Engineering :: Atmospheric Science', 
     27      ], 
    1128      author='Chris Calloway', 
    12       author_email='cbc@unc.edu', 
    13       packages=['sodar','sodar.utils','sodar.remtech',], 
    14       ) 
    15  
    16  
     29      author_email='cbc@chriscalloway.org', 
     30      url='http://svn.nccoos.org/dataproc/sodar/trunk/', 
     31      keywords='sodar scintec remtech wind profile', 
     32      packages=find_packages(exclude=['ez_setup']), 
     33      include_package_data = True, 
     34      zip_safe=False, 
     35      install_requires=[ 
     36          'setuptools', 
     37      ], 
     38      entry_points=""" 
     39      """, 
     40      test_suite='sodar.tests.suite.test_suite', 
     41     ) 
  • sodar/trunk/sodar

    • Property svn:ignore set to *~ *.pyc *.pyo #*# build dist *.egg-info
  • sodar/trunk/sodar/__init__.py

    r295 r296  
    55 
    66__all__ = ['remtech', 
     7           'scintec', 
    78           'utils',] 
  • sodar/trunk/sodar/remtech

    • Property svn:ignore set to *~ *.pyc *.pyo #*# build dist *.egg-info
  • sodar/trunk/sodar/utils

    • Property svn:ignore set to *~ *.pyc *.pyo #*# build dist *.egg-info