-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.23 KB
/
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
44
45
46
47
48
49
50
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyFRF"
version = "1.1.1"
authors = [{name = "Janko Slavič, Luka Novak, Martin Česnik, et al.", email = "[email protected]"}]
maintainers = [{name = "Janko Slavič, Luka Novak, Martin Česnik, et al.", email = "[email protected]"}]
license = "MIT"
description = "Frequency response function as used in structural dynamics."
readme = "readme.rst"
keywords = ["FRF", "MIMO", "SIMO", "ODS"]
requires-python = ">=3.10"
dependencies = [
"colorama",
"py",
"lvm_read",
"pyExSi",
"matplotlib",
"numpy>=1.11.0",
"scipy>=1.2.0",
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
dev = [
"sphinx",
"twine",
"wheel",
"pytest",
"sphinx-rtd-theme",
"nbsphinx",
"nbsphinx_link",
"jupyter",
"sphinx-book-theme",
]
[project.urls]
homepage = "https://github.com/ladisk/pyFRF"
documentation = "https://pyfrf.readthedocs.io/en/latest/"
source = "https://github.com/ladisk/pyFRF"