-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1019 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (39 loc) · 1019 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
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hyloa"
version = "1.13.2"
description = "A package for analyzing hysteresis loops"
readme = "README.md"
requires-python = ">=3.10.12"
license = "GPL-3.0-only"
license-files = ["LICENSE.txt"]
authors = [
{ name = "Francesco Zeno Costanzo", email = "zenofrancesco99@gmail.com" }
]
dependencies = [
"PyQt5",
"numpy",
"scipy",
"pandas",
"requests",
"matplotlib"
]
keywords = ["hysteresis", "analysis", "materials", "mechanics", "GUI"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/Francesco-Zeno-Costanzo/hyloa"
[project.gui-scripts]
hyloa = "hyloa.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
hyloa = ["resources/*.png", "resources/*.ico"]
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest.ini_options]
qt_api = "pyqt5"