-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bas Hoonhout
committed
Nov 15, 2017
1 parent
ed529b7
commit 0ba5b6c
Showing
6 changed files
with
49 additions
and
7 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
AeoLiS | ||
====== | ||
|
||
AeoLiS is a process-based model for simulating aeolian sediment | ||
transport in situations where supply-limiting factors are important, | ||
like in coastal environments. Supply-limitations currently supported | ||
are soil moisture contents, sediment sorting and armouring, bed slope | ||
effects, air humidity and roughness elements. | ||
|
||
AeoLiS is initially developed by `Bas Hoonhout | ||
<[email protected]>`_ at `Delft University of Technology | ||
<http://www.tudelft.nl>`_ with support from the ERC-Advanced Grant | ||
291206 Nearshore Monitoring and Modeling (`NEMO | ||
<http://nemo.citg.tudelft.nl>`_) and `Deltares | ||
<http://www.deltares.nl>`_. AeoLiS is currently maintained by `Bas Hoonhout | ||
<[email protected]>`_ at Deltares and `Sierd de Vries | ||
<[email protected]>`_ at Delft University of Technology. |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[bdist_wheel] | ||
universal=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,21 +2,44 @@ | |
|
||
setup( | ||
name='AeoLiS', | ||
version='0.0', | ||
version='1.1.1', | ||
author='Bas Hoonhout', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
url='http://aeolis.readthedocs.io/', | ||
license='GNU GPLv3', | ||
description='A process-based model for simulating supply-limited aeolian sediment transport', | ||
long_description=open('README.txt').read(), | ||
long_description=open('README.rst').read(), | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Natural Language :: English', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: POSIX', | ||
'Operating System :: Unix', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.2', | ||
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Topic :: Scientific/Engineering :: Physics', | ||
], | ||
keywords=['aeolian sediment transport coastal model deltares tudelft'], | ||
packages=find_packages(exclude=['docs', 'examples', 'tests']), | ||
install_requires=[ | ||
'bmi', | ||
'scipy', | ||
'numpy', | ||
'docopt', | ||
'bmi-python', | ||
], | ||
dependency_links=[ | ||
'git+https://github.com/openearth/bmi-python.git#egg=bmi', | ||
], | ||
python_requires='>=2.7, <4', | ||
tests_require=[ | ||
'nose' | ||
], | ||
|