Skip to content

Commit 0ba5b6c

Browse files
author
Bas Hoonhout
committed
Prepare for PyPI
1 parent ed529b7 commit 0ba5b6c

File tree

6 files changed

+49
-7
lines changed

6 files changed

+49
-7
lines changed
File renamed without changes.

README.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
AeoLiS
2+
======
3+
4+
AeoLiS is a process-based model for simulating aeolian sediment
5+
transport in situations where supply-limiting factors are important,
6+
like in coastal environments. Supply-limitations currently supported
7+
are soil moisture contents, sediment sorting and armouring, bed slope
8+
effects, air humidity and roughness elements.
9+
10+
AeoLiS is initially developed by `Bas Hoonhout
11+
<[email protected]>`_ at `Delft University of Technology
12+
<http://www.tudelft.nl>`_ with support from the ERC-Advanced Grant
13+
291206 Nearshore Monitoring and Modeling (`NEMO
14+
<http://nemo.citg.tudelft.nl>`_) and `Deltares
15+
<http://www.deltares.nl>`_. AeoLiS is currently maintained by `Bas Hoonhout
16+
<[email protected]>`_ at Deltares and `Sierd de Vries
17+
<[email protected]>`_ at Delft University of Technology.

README.txt

Whitespace-only changes.

aeolis/console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def print_license():
113113
print('AeoLiS Copyright (C) 2015 Bas Hoonhout')
114114
print('This program comes with ABSOLUTELY NO WARRANTY.')
115115
print('This is free software, and you are welcome to redistribute it')
116-
print('under certain conditions; See LICENSE for details.')
116+
print('under certain conditions; See LICENSE.txt for details.')
117117
print('')
118118

119119

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal=1

setup.py

Lines changed: 29 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,44 @@
22

33
setup(
44
name='AeoLiS',
5-
version='0.0',
5+
version='1.1.1',
66
author='Bas Hoonhout',
77
author_email='[email protected]',
8-
packages=find_packages(),
8+
url='http://aeolis.readthedocs.io/',
9+
license='GNU GPLv3',
910
description='A process-based model for simulating supply-limited aeolian sediment transport',
10-
long_description=open('README.txt').read(),
11+
long_description=open('README.rst').read(),
12+
classifiers=[
13+
'Development Status :: 5 - Production/Stable',
14+
'Environment :: Console',
15+
'Intended Audience :: Developers',
16+
'Intended Audience :: Science/Research',
17+
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
18+
'Natural Language :: English',
19+
'Operating System :: MacOS :: MacOS X',
20+
'Operating System :: Microsoft :: Windows',
21+
'Operating System :: POSIX',
22+
'Operating System :: Unix',
23+
'Programming Language :: Python :: 2.7',
24+
'Programming Language :: Python :: 3',
25+
'Programming Language :: Python :: 3.2',
26+
'Programming Language :: Python :: 3.3',
27+
'Programming Language :: Python :: 3.4',
28+
'Programming Language :: Python :: 3.5',
29+
'Programming Language :: Python :: 3.6',
30+
'Programming Language :: Python :: 3.7',
31+
'Topic :: Scientific/Engineering :: Physics',
32+
],
33+
keywords=['aeolian sediment transport coastal model deltares tudelft'],
34+
packages=find_packages(exclude=['docs', 'examples', 'tests']),
1135
install_requires=[
1236
'bmi',
1337
'scipy',
1438
'numpy',
1539
'docopt',
40+
'bmi-python',
1641
],
17-
dependency_links=[
18-
'git+https://github.com/openearth/bmi-python.git#egg=bmi',
19-
],
42+
python_requires='>=2.7, <4',
2043
tests_require=[
2144
'nose'
2245
],

0 commit comments

Comments
 (0)