generated from IMTEK-Simulation/python-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 892 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
26
27
28
29
30
31
32
33
34
35
36
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "muFFTTO"
description = "Python skeleton project"
readme = "README.md"
license = { file = "LICENSE.md" }
authors = [
{ name = "Lars Pastewka", email = "[email protected]" },
{ name = "Martin Ladecky", email = "[email protected]" }
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python"
]
requires-python = ">=3.8.0"
dynamic = [ "version" ]
dependencies = [
"numpy",
"scipy"
]
[project.optional-dependencies]
test = [
"flake8<5",
"pytest",
"pytest-cov",
"pytest-flake8"
]
[project.urls]
documentation = "https://imtek-simulation.github.io/muFFTTO/"
repository = "https://github.com/imtek-simulation/muFFTTO"
changelog = "https://github.com/imtek-simulation/muFFTTO/blob/master/CHANGELOG.md"