Skip to content

Commit

Permalink
Bump version number to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmw committed Apr 28, 2023
1 parent 38e80cb commit a3a122a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pykonal/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__major_version__ = 0
__minor_version__ = 2
__patch__ = 3
__release__ = 'b5'
__minor_version__ = 4
__patch__ = 0
__release__ = ''
__version_tuple__ = (
__major_version__,
__minor_version__,
Expand Down
28 changes: 26 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
[build-system]
requires = ["setuptools", "wheel", "cython>=0.29.14", "numpy"]
build-backend = "setuptools.build_meta"
requires = ['setuptools', 'wheel', 'Cython>=0.29.14', 'numpy']
build-backend = 'setuptools.build_meta'

[project]
name = 'pykonal'
version = '0.4.0'
authors = [
{name='Malcolm C. A. White', email='malcolmw@mit.edu'}
]
description = 'Solve the Eikonal equation in 3D Cartesian or spherical coordinates.'
readme = 'README.md'
requires-python = '>= 3.6'
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Physics'
]

[project.urls]
'Homepage' = 'https://github.com/malcolmw/pykonal'
'Bug Tracker' = 'https://github.com/malcolmw/pykonal/issues'

0 comments on commit a3a122a

Please sign in to comment.