-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (42 loc) · 1.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyExSi"
version = "0.43.2"
authors = [{name = "Aleš Zorman, Domen Gorjup, Janko Slavič", email = "janko.slavic@fs.uni-lj.si"}]
maintainers = [{name = "Janko Slavič, Domen Gorjup, Aleš Zorman", email = "janko.slavic@fs.uni-lj.si"}]
license = "MIT"
description = "Excitation signals as used in structural dynamics and vibration fatigue."
readme = "readme.rst"
keywords = ["excitation signal", "structural dynamics", "dynamic testing"]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.18",
"scipy",
"pylint",
"pytest",
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
dev = [
"sphinx",
"twine",
"wheel",
"pytest",
"build",
"sphinx-rtd-theme",
"matplotlib",
"sphinx-copybutton>=0.5.2",
"black",
]
[project.urls]
homepage = "https://github.com/ladisk/pyExSi"
documentation = "https://pyexsi.readthedocs.io/en/latest/index.html"
source = "https://github.com/sdypy/pyExSi"