-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.92 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
# plotpy setup configuration file
[build-system]
requires = ["setuptools", "wheel", "cython ~= 0.29.0", "numpy >= 1.17"]
build-backend = "setuptools.build_meta"
[project]
name = "PlotPy"
authors = [{ name = "Codra", email = "[email protected]" }]
description = "Curve and image plotting tools for Python/Qt applications"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Software Development :: User Interfaces",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8, <4"
dependencies = [
"guidata>=3.1",
"PythonQwt>=0.10",
"NumPy>=1.17",
"SciPy>=1.3",
"Pillow",
"tifffile",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/PlotPyStack/plotpy/"
Documentation = "https://plotpy.readthedocs.io/en/latest/"
[project.gui-scripts]
plotpy-tests = "plotpy.tests:run"
[project.optional-dependencies]
dev = ["black", "isort", "pylint", "Coverage", "Cython"]
doc = [
"PyQt5",
"sphinx",
"sphinx-copybutton",
"sphinx_qt_documentation",
"python-docs-theme",
]
test = ["pytest", "pytest-cov", "pytest-qt", "pytest-xvfb"]
[tool.setuptools.packages.find]
include = ["plotpy*"]
[tool.setuptools.package-data]
"*" = ["*.png", "*.svg", "*.mo", "*.cfg", "*.toml", "*.dcm", "*.ui"]
[tool.setuptools.dynamic]
version = { attr = "plotpy.__version__" }