-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (39 loc) · 1.04 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "numericalderivative"
version = "0.2"
description = "Numerical differentiation"
readme = "README.md"
keywords = [
"Numerical Differentiation",
"First Derivative",
"Finite Difference",
"Optimal Step Size",
"Numerical Analysis"
]
license = {text = "GNU Lesser General Public License v3 (LGPLv3)"}
authors = [
{name = "Michaël Baudin", email = "[email protected]"}
]
urls = { "Homepage" = "https://github.com/mbaudin47/numericalderivative" }
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy",
"scipy",
]
[project.optional-dependencies]
cli = [
"openturns",
"matplotlib",
]