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

root/sodar/branches/scintec-branch/setup.py

Revision 253 (checked in by cbc, 14 years ago)

Completed test refactoring. 100% test coverage.

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