-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.22 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fredipy"
authors = [
{name = "Jonas Turnwald", email = "jonas.turnwald@tu-darmstadt.de"},
{name = "Julian M. Urban", email = "jurban@mit.edu"}, # DO EMAILS!
{name = "Nicolas Wink", email = "tbd@tbd.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics"
]
readme = "README.md"
license = { file = "LICENSE" }
description = "Inverting Fredholm Integrals with Python"
keywords = ["gaussian-process","fredholm","inverse-problem"]
dynamic = ["version"]
dependencies = [
"numpy",
"scipy"
]
requires-python = ">=3.10"
[project.optional-dependencies]
test = ["pytest"]
examples = ["matplotlib"]
[project.urls]
Repository = "https://github.com/JonasTurnwald/fredipy"
[tool.setuptools.packages.find]
include = ["fredipy"]
exclude = ["tests*", "docs", "examples", "archive"]
[tool.setuptools.dynamic]
version = {attr = "fredipy.__version__"}