-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
47 lines (41 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""
WOFpy
-------
WOFpy is a python library for serving CUAHSI's WaterOneflow 1.0 web services
CUAHSI is the Consortium of Universities for the
Advancement of Hydrologic Science, Inc.
"""
from setuptools import Command, setup, find_packages
setup(
name='WOFpy',
version='0.1.1-alpha',
license='BSD',
author='James Seppi',
author_email='[email protected]',
# note: maintainer gets listed as author in PKG-INFO, so leaving
# this commented out for now
# maintainer='Andy Wilson',
# maintainer_email='[email protected]',
description='a python library for serving WaterOneFlow web services',
long_description=__doc__,
keywords='cuahsi his wofpy water waterml cuahsi wateroneflow',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'flask>=0.6.1',
'lxml>=2.3',
'soaplib>=2.0.0b',
'nose',
'python-dateutil==1.5.0'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)