-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 903 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 903 Bytes
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
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "python-skeleton"
description = "Python skeleton project"
readme = "README.md"
license = { file = "LICENSE.md" }
authors = [
{ name = "Lars Pastewka", email = "lars.pastewka@imtek.uni-freiburg.de" }
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python"
]
requires-python = ">=3.8.0"
dynamic = [ "version" ]
dependencies = [
"numpy",
"scipy"
]
[project.optional-dependencies]
test = [
"flake8",
"pytest",
"pytest-cov",
"pytest-flake8"
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
[project.urls]
documentation = "https://imtek-simulation.github.io/python-skeleton/"
repository = "https://github.com/imtek-simulation/python-skeleton"
changelog = "https://github.com/imtek-simulation/python-skeleton/blob/master/CHANGELOG.md"