-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.91 KB
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "wxmplot/version.py"
version_scheme = "post-release"
[tool.setuptools.packages.find]
include = ["wxmplot"]
[tool.coverage.run]
omit = ["tests/*"]
[project]
name = "wxmplot"
dynamic = ["version"]
requires-python = ">= 3.10"
description = "wxPython plotting widgets using matplotlib"
readme = "README.md"
authors = [
{name = "Matthew Newville", email = "matt.newville@gmail.com"}
]
license = "MIT"
license-files = ["LICENSE"]
keywords = ["wxPython", "matplotlib"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
dependencies = [
"wxPython>=4.2.0",
"wxutils>=2026.1.0",
"darkdetect",
"pyobjc-framework-Cocoa; platform_system == 'Darwin'",
"matplotlib>=3.9.0",
"pytz",
"numpy>=1.26",
"Pillow>=7.0",
"pyyaml>=5.0",
"pyshortcuts>=1.9.5"]
[project.urls]
Homepage = "https://github.com/newville/wxmplot"
Documentation = "https://newville.github.io/wxmplot"
Tracker = "https://github.com/newville/wxmplot/issues"
[project.optional-dependencies]
dev = ["build", "twine"]
doc = ["Sphinx", "jupyter_sphinx", "sphinx-copybutton", "sphinxcontrib-video"]
test = ["pytest", "pytest-cov", "coverage"]
all = ["wxmplotls[dev, doc, test]"]