Skip to content

Commit

Permalink
Prepare for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
Bas Hoonhout committed Nov 15, 2017
1 parent ed529b7 commit 0ba5b6c
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 7 deletions.
File renamed without changes.
17 changes: 17 additions & 0 deletions README.rst
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 removed README.txt
Empty file.
2 changes: 1 addition & 1 deletion aeolis/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def print_license():
print('AeoLiS Copyright (C) 2015 Bas Hoonhout')
print('This program comes with ABSOLUTELY NO WARRANTY.')
print('This is free software, and you are welcome to redistribute it')
print('under certain conditions; See LICENSE for details.')
print('under certain conditions; See LICENSE.txt for details.')
print('')


Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
35 changes: 29 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
],
Expand Down

0 comments on commit 0ba5b6c

Please sign in to comment.