diff --git a/CHANGES.rst b/CHANGES.rst index 1cc16a410cd430937d7f15b6b18a490514b441d7..83dc67bca84f85044977c0d0510595ec75dc0ba8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changelog ========= +1.0.0 (2017-12-19) +------------------ + +- Peer-reviewed version to be published in Knote et al., GMD + 0.1.0 (2017-08-12) ------------------ diff --git a/README.rst b/README.rst index b30192dee42a73a0e5bbda5b61bc716b04397752..957965176606bf7e5a3568de2ad7e4c2d76aada4 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,8 @@ boxmox ====== -``boxmox`` is the Python wrapper for the chemical box model BOXMOX +``boxmox`` is the Python wrapper for the chemical box model BOXMOX (a standalone +C/Fortran executable) Documentation ============= diff --git a/setup.py b/setup.py index e8f996c84aefacdae5d975b69ecda18d1d1edd26..3db26b4518f56b1265028071816723261c9e6f40 100644 --- a/setup.py +++ b/setup.py @@ -8,13 +8,13 @@ def read(filename): setup(name='boxmox', description='Python wrapper for the chemical box model BOXMOX', long_description=read('README.rst') + '\n\n' + read('INSTALL.rst') + '\n\n' + read('CHANGES.rst'), - version='0.1.0', + version='1.0.0', url='https://boxmodeling.meteo.physik.uni-muenchen.de', author='Christoph Knote', author_email='christoph.knote@physik.uni-muenchen.de', license='GPLv3', classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: Education', @@ -30,7 +30,8 @@ setup(name='boxmox', keywords='', python_requires='<3', packages=['boxmox'], - install_requires=['subprocess32;python_version<"3.0"', 'numpy', 'f90nml', 'pyparsing' ], +# install_requires=['subprocess32;python_version<"3.0"', 'numpy', 'f90nml', 'pyparsing' ], + install_requires=['numpy', 'f90nml', 'pyparsing' ], entry_points={ 'console_scripts': [