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

Changeset 239

Show
Ignore:
Timestamp:
11/17/09 17:29:23
Author:
cbc
Message:

Extra setup.py args.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sodar/branches/scintec-branch/setup.py

    r238 r239  
    66from setuptools import setup, find_packages 
    77 
     8version = '2.0' 
     9 
    810setup(name='sodar', 
    9       version='2.0'
     11      version=version
    1012      description='Process sodar wind profile data.', 
    1113      long_description=open('README.txt').read() + "\n" + 
    1214                       open('HISTORY.txt').read(), 
    1315      classifiers=[ 
    14         'Development Status :: 4-Beta', 
    15         'Environment :: Console', 
    16         'Intended Audience :: Science/Research', 
    17         'License :: OSI Approved :: GNU General Public License (GPL)', 
    18         'Programming Language :: Python', 
    19         'Topic :: Scientific/Engineering', 
    20         'Topic :: Scientific/Engineering :: Atmospheric Science', 
     16          'Development Status :: 5 - Production/Stable', 
     17          'Environment :: Console', 
     18          'Intended Audience :: Science/Research', 
     19          'License :: OSI Approved :: GNU General Public License (GPL)', 
     20          'Programming Language :: Python', 
     21          'Topic :: Scientific/Engineering', 
     22          'Topic :: Scientific/Engineering :: Atmospheric Science', 
    2123      ], 
    2224      author='Chris Calloway', 
     
    2527      keywords='sodar scintec remtech wind profile', 
    2628      packages=find_packages(exclude=['ez_setup']), 
     29      include_package_data = True, 
    2730      zip_safe=False, 
    28       include_package_data = True, 
     31      install_requires=[ 
     32          'setuptools', 
     33      ], 
     34      entry_points=""" 
     35      """, 
    2936     )