1 |
""" |
---|
2 |
Installer for sodar package. |
---|
3 |
""" |
---|
4 |
|
---|
5 |
__author__ = 'Chris Calloway' |
---|
6 |
__email__ = 'cbc@chriscalloway.org' |
---|
7 |
__copyright__ = 'Copyright 2009 UNC-CH Department of Marine Science' |
---|
8 |
__license__ = 'GPL2' |
---|
9 |
|
---|
10 |
from setuptools import setup, find_packages |
---|
11 |
|
---|
12 |
version = '2.0' |
---|
13 |
|
---|
14 |
setup(name='sodar', |
---|
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 |
], |
---|
28 |
author='Chris Calloway', |
---|
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 |
) |
---|