Skip to content

Commit

Permalink
Change to version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stammler committed Dec 16, 2021
1 parent 68c54c8 commit 67fb02a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion paper/joss/paper.md
Expand Up @@ -47,7 +47,7 @@ Plenty of ODE solver packages already exist for Python, like `solve_ivp` or `ode

## Data fields

The data fields of `Simframe` are subclassed `NumPy` `ndarray`s. The full `NumPy` functionality can therefore be used on `Simframe` data fields. The `ndarray`s have been extended to store additional information about differential equations or update functions and a string description of the field. The data fields can be arranged in groups to facilitate a clear structure withing the data frame.
The data fields of `Simframe` are subclassed `NumPy` `ndarray`s. The full `NumPy` functionality can therefore be used on `Simframe` data fields. The `ndarray`s have been extended to store additional information about differential equations or update functions and a string description of the field. The data fields can be arranged in groups to facilitate a clear structure within the data frame.

## Integration schemes

Expand Down
10 changes: 5 additions & 5 deletions setup.py
Expand Up @@ -19,7 +19,7 @@ def read_version():
setup(
name=package_name,

description="Framework for scientific simulations",
description="Framework for Scientific Simulations",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords="numerical,simulation,integration,science,mathematics,physics",
Expand All @@ -29,18 +29,18 @@ def read_version():
"Documentation": "https://simframe.readthedocs.io/"
},

author="Sebastian Stammler, Til Birnstiel",
author="Sebastian Stammler, Tilman Birnstiel",
author_email="sebastian.stammler@gmail.com, til.birnstiel@lmu.de",
maintainer="Sebastian Stammler",

version=read_version(),
license="GPLv3",
license="BSD",

classifiers=["Development Status :: 3 - Alpha",
classifiers=["Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
Expand Down
2 changes: 1 addition & 1 deletion simframe/__init__.py
Expand Up @@ -5,7 +5,7 @@
from simframe.io import writers

__name__ = "simframe"
__version__ = "0.5.4"
__version__ = "1.0.0"

__all__ = ["Frame",
"Instruction",
Expand Down

0 comments on commit 67fb02a

Please sign in to comment.