-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
92 lines (81 loc) · 2.03 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[project]
name = "mplsignal"
description = "Matplotlib extension for signal processing-related plots"
authors = [
{name = "Oscar Gustafsson", email = "oscar.gustafsson@gmail.com"}
]
requires-python = ">=3.8"
license = {file = "LICENSE"}
readme = "README.md"
dynamic = [
"version"
]
dependencies = [
"matplotlib",
"adjustText"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Matplotlib",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
'Topic :: Scientific/Engineering :: Visualization',
]
[project.optional-dependencies]
test = [
"black",
"pytest",
"pytest-mpl",
"pytest-cov"
]
doc = [
"sphinx",
"numpydoc",
"sphinx_rtd_theme",
"sphinx-copybutton",
"sphinx-autobuild",
"sphinx_gallery>=0.8.2",
"autoapi",
"furo",
"scipy"
]
[project.urls]
Homepage = "https://github.com/oscargus/mplsignal"
Documentation = "https://mplsignal.readthedocs.io/"
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
platforms = ["any"]
zip-safe = false
include-package-data = false
[tool.setuptools.packages.find]
where = ["lib"]
include = ["mplsignal*"]
exclude = ["doc*", "examples*", "tests*"]
[tool.setuptools_scm]
write_to = "lib/mplsignal/_version.py"
version_scheme = "release-branch-semver"
local_scheme = "node-and-date"
parentdir_prefix_version = "mplsignal-"
fallback_version = "0.0+UNKNOWN"
[tool.black]
skip-string-normalization = true
line-length = 88
[tool.pytest.ini_options]
testpaths = [
"mplsignal/tests"
]
[tool.isort]
profile = "black"
line_length = 88
src_paths = ["mplsignal"]
[tool.flake8]
max-line-length = 88