-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.27 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
51
52
53
54
[project]
name = "preisach"
dynamic = ["version"]
authors = [
{ name="Isaac Kramer", email="43068145+isaackramer@users.noreply.github.com" },
{ name="Peter Hillerström", email="peter.hillerstrom@gmail.com" },
]
description = "Python implementation of the Preisach model of hysteresis"
readme = "README.md"
keywords = [
"hysteresis",
]
license.text = "MIT License"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.7"
dependencies = [
"numpy >= 1.23.5",
"palettable >= 3.3.0",
]
[project.optional-dependencies]
dev = [
"black >= 22.1.0",
"flake8 >= 6.0.0",
"pycodestyle >= 2.10.0",
"pylint >= 2.15.10",
]
notebook = [
"jupyter ~= 1.0.0",
]
plot = [
"matplotlib ~= 3.4.3",
]
# [project.gui-scripts]
# preisach-widget = preisach.plot_preisach_widget:main [plot]
[project.urls]
"Source code" = "https://github.com/isaackramer/python-preisach"
"Issue tracker" = "https://github.com/isaackramer/python-preisach/issues"
[tool.setuptools]
packages = ["preisach"]
[tool.setuptools.dynamic]
version.attr = "preisach.__version__"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"