forked from florisvb/PyNumDiff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.39 KB
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]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pynumdiff"
dynamic = ["version"]
description = "pynumdiff: numerical derivatives in python"
readme = "README.md"
license = "MIT"
maintainers = [
{name = "Floris van Breugel", email = "fvanbreugel@unr.edu"},
{name = "Pavel Komarov", email = "pvlkmrv@uw.edu"},
{name = "Yuying Liu", email = "yliu814@uw.edu"}
]
keywords = ["derivative", "smoothing", "curve fitting", "optimization", "total variation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
dependencies = [
"numpy",
"scipy",
"matplotlib"
]
[project.urls]
homepage = "https://github.com/florisvb/PyNumDiff"
documentation = "https://pynumdiff.readthedocs.io/"
package = "https://pypi.org/project/pynumdiff/"
[project.optional-dependencies]
advanced = [
"cvxpy",
"tqdm"
]
dev = [
"pylint",
"pytest",
"cvxopt",
"cvxpy"
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"myst-parser",
"cvxpy", # necessary to document modules which import this
"tqdm" # optimize module imports this
]
[tool.setuptools_scm]
write_to = "pynumdiff/_version.py"
[tool.setuptools]
packages = ["pynumdiff"]