-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpyproject.toml
27 lines (25 loc) · 895 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[build-system]
requires = ['setuptools==68.2.2', 'wheel', 'Cython>=0.29.14', 'numpy']
build-backend = 'setuptools.build_meta'
[project]
name = 'pykonal'
version = '0.4.1'
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'