-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
58 lines (51 loc) · 1.24 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
# Minimum requirements for the build system to execute.
requires = [
"setuptools",
"wheel",
"Cython",
"numpy>=1.16.4",
"scipy>=1.0.0",
]
#cython is needed for build to execute because some of Pyapprox cython extensions use scipy cython functions
[project]
name = "pyapprox"
version = "1.0.3"
description = "High-dimensional function approximation and estimation"
requires-python = '>=3.6'
license = {file = 'LICENSE'}
readme = "README.md"
authors = [
{name = "John D. Jakeman", email = "29109026+jdjakem@users.noreply.github.com"},
]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'numpy >= 1.16.4',
'matplotlib',
'scipy >= 1.0.0',
'Cython',
'sympy',
'torch',
'scikit-learn',
'coverage>=6.4',
'pytest-cov',
'pytest>=4.6',
'networkx',
'numba',
'scikit-fem',
'umbridge',
]
[project.optional-dependencies]
docs = ['numpydoc', 'sphinx', 'sphinx_automodapi', 'sphinx_rtd_theme',
'sphinx-gallery', 'jupyter']
[tool.coverage]
[tool.coverage.run]
omit = [
'__init__.py',
]
[tool.coverage.report]
skip_empty = true