-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 989 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
37
38
39
40
41
42
43
[project]
name = "pyfds"
description = "Modular field simulation tool using finite differences."
dynamic = ["version"]
readme = "README.rst"
authors = [
{name = "Leander Claes", email = "claes@emt.uni-paderborn.de"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"matplotlib",
"numpy",
"scipy",
]
license = {file = "LICENSE"}
requires-python = ">=3.7"
[project.optional-dependencies]
doc = [
"setuptools_scm",
"sphinx",
"sphinx-rtd-theme",
]
test = [
"pytest",
]
[project.urls]
homepage = "https://emt.uni-paderborn.de"
source = "https://github.com/emtpb/pyfds"
tracker = "https://github.com/emtpb/pyfds/issues"
[build-system]
requires = ["setuptools>=41", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]