Skip to content
Snippets Groups Projects
Commit dc0e9ff9 authored by Christoph Knote's avatar Christoph Knote
Browse files

Prepping for release

parent 40f6be69
Branches
Tags
No related merge requests found
# Changelog
## 1.2.0 (2022-03-08)
- Updates to be compatible with BOXMOX 1.8
## 1.1.0 (2020-09-16)
- Python 3 compatible
## 1.0.0 (2017-12-19)
- Peer-reviewed version to be published in Knote et al., GMD
## 0.1.0 (2017-08-12)
- Initial release
```
pip install boxmox
```
The BOXMOX chemical box model needs to be installed and usable,
and the KPP_HOME environment variable has to be set.
Set the BOXMOX environmental variable in ~/.bashrc or similar for your shell:
```
export BOXMOX_WORK_PATH=/where/you/want/boxmox/to/write/stuff/to/
```
Remember to close the shell and log in again for these changes to take effect.
File moved
# BOXMOX # BOXMOX
``boxmox`` is the Python wrapper for the chemical box model BOXMOX (a standalone ``boxmox`` is the Python wrapper for the chemical box model BOXMOX (a standalone
C/Fortran executable) C/Fortran executable).
## Documentation ## Installation notes
maintained at http://mbees.med.uni-augsburg.de/boxmodeling/ ### BOXMOX model needs to be installed
## Installation The BOXMOX chemical box model needs to be installed and usable,
and the KPP_HOME environment variable has to be set.
The chemical box model BOXMOX is required. See the documentation for You can download it from our website at https://mbees.med.uni-augsburg.de/boxmodeling.
detailed instructions on how to install it.
\ No newline at end of file ### Environment variable needs to be set
Additionally, boxmox needs a path to write temporary model results
to. This directory needs to be accessible and writeable by the
user. Set it in your environment, e.g., through:
```
export BOXMOX_WORK_PATH=/where/you/want/boxmox/to/write/stuff/to/
```
Remember to close the shell and log in again for these changes to take effect.
# Changelog
## 1.2.0 (2022-03-08)
- Updates to be compatible with BOXMOX 1.8
## 1.1.0 (2020-09-16)
- Python 3 compatible
## 1.0.0 (2017-12-19)
- Peer-reviewed version to be published in Knote et al., GMD
## 0.1.0 (2017-08-12)
- Initial release
[tool.poetry] [tool.poetry]
name = "boxmox" name = "boxmox"
version = "1.2.0" version = "1.2.1"
description = "BOXMOX python interface" description = "BOXMOX python interface"
license = "GPL-3.0-or-later" license = "GPL-3.0-or-later"
authors = ["Christoph Knote <christoph.knote@med.uni-augsburg.de>"] authors = ["Christoph Knote <christoph.knote@med.uni-augsburg.de>"]
...@@ -31,7 +31,7 @@ issues = "http://mbees.med.uni-augsburg.de/gitlab/mbees/boxmox_pypackage/issues" ...@@ -31,7 +31,7 @@ issues = "http://mbees.med.uni-augsburg.de/gitlab/mbees/boxmox_pypackage/issues"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.10" python = "^3"
numpy = ">= 1.2" numpy = ">= 1.2"
f90nml = ">= 1.3" f90nml = ">= 1.3"
pyparsing = ">= 3" pyparsing = ">= 3"
......
[metadata]
name = boxmox
version = 1.2.0
author = Christoph Knote
author_email = christoph.knote@med.uni-augsburg.de
description = BOXMOX python interface
long_description = file: README.md, INSTALL.md, CHANGES.md
long_description_content_type = text/markdown
url = https://mbees.med.uni-augsburg.de
project_urls =
Bug Tracker = http://mbees.med.uni-augsburg.de/gitlab/mbees/boxmox_pypackage/issues
classifiers =
Programming Language :: Python :: 3
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: End Users/Desktop
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: POSIX
Topic :: Education
Topic :: Scientific/Engineering
Topic :: Utilities
[options]
package_dir =
= src
packages = find:
python_requires = >=3.0
include_package_data = True
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
plot_BOXMOX_experiment = boxmox._console:plotExperiment
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment