forked from vMeijin/pySmithPlot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (43 loc) · 962 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
44
45
46
47
48
[tool.pdm]
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.3.1",
"pytest-xdist>=3.2.1",
]
lint = [
"flake8>=5.0.4",
]
[project]
name = "mpl-smithchart"
description = "An extension for matplotlib providing a projection class to generate high quality Smith Chart plots."
readme = "README.md"
license = {text = "BSD"}
authors = [
{name = "Paul Staerke", email = "[email protected]"},
{name = "Spencer Chang", email = "[email protected]"},
]
requires-python = ">=3.8"
dynamic = [
"version",
]
dependencies = [
"matplotlib>=1.2",
"numpy>=1.24.3",
"scipy>=1.9.3",
]
[project.urls]
repository = "https://github.com/schang412/mpl-smithchart"
[tool.setuptools_scm]
write_to = "mpl_smithchart/_version.py"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61",
"setuptools_scm[toml]>=6.2",
"wheel",
]
[tool.pytest.ini_options]
testpaths = [
"tests"
]
addopts = "--import-mode importlib"