-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
26 lines (22 loc) · 871 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "AlgDiff"
version = "2.4"
authors = [
{ name="Amine Othmane", email="amine.othmane@uni-saarland.de" },
]
description = "AlgDiff is a Python class implementing all necessary tools for the design, analysis, and discretization of algebraic differentiators. An interface to Matlab is also provided."
readme = "README.md"
requires-python = ">=3.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = ['scipy', 'mpmath', 'numpy']
license = {file = "LICENSE"}
keywords = ['numerical-differentiation ', 'fir-filters', 'orthogonal-polynomials', 'numerical-methods ']
[project.urls]
"Homepage" = "https://github.com/aothmane-control/Algebraic-differentiators/tree/master"