|
2 | 2 |
|
3 | 3 | setup( |
4 | 4 | name='AeoLiS', |
5 | | - version='0.0', |
| 5 | + version='1.1.1', |
6 | 6 | author='Bas Hoonhout', |
7 | 7 | |
8 | | - packages=find_packages(), |
| 8 | + url='http://aeolis.readthedocs.io/', |
| 9 | + license='GNU GPLv3', |
9 | 10 | 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']), |
11 | 35 | install_requires=[ |
12 | 36 | 'bmi', |
13 | 37 | 'scipy', |
14 | 38 | 'numpy', |
15 | 39 | 'docopt', |
| 40 | + 'bmi-python', |
16 | 41 | ], |
17 | | - dependency_links=[ |
18 | | - 'git+https://github.com/openearth/bmi-python.git#egg=bmi', |
19 | | - ], |
| 42 | + python_requires='>=2.7, <4', |
20 | 43 | tests_require=[ |
21 | 44 | 'nose' |
22 | 45 | ], |
|
0 commit comments