-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.cfg
43 lines (41 loc) · 1.17 KB
/
setup.cfg
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[metadata]
name = fteikpy
version = attr: fteikpy.__about__.__version__
author = Keurfon Luu
email = [email protected]
description = Accurate Eikonal solver for Python
url = https://github.com/keurfonluu/fteikpy
project_urls =
Code=https://github.com/keurfonluu/fteikpy
Issues=https://github.com/keurfonluu/fteikpy/issues
long_description = file: README.rst
long_description_content_type = text/x-rst
license = BSD 3-Clause License
platforms = any
classifiers =
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Natural Language :: English
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
[options]
packages = find:
install_requires =
importlib_metadata
numpy
numba
python_requires = >= 3.6
setup_requires =
setuptools >= 42
wheel
[options.extras_require]
full =
scipy
meshio >= 4.0