-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
63 lines (56 loc) · 1.81 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
[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.9"
description = "wxPython plotting widgets using matplotlib"
readme = "README.md"
authors = [
{name = "Matthew Newville", email = "matt.newville@gmail.com"}
]
license = {file = "LICENSE"}
keywords = ["wxPython", "matplotlib"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"wxPython>=4.2.0",
"wxutils>=0.3.0",
"matplotlib>=3.6.0",
"numpy>=1.22",
"Pillow>=7.0",
"pyyaml>=5.0",
"pyshortcuts>=1.9.5"]
[project.urls]
Hoempage = "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"]
test = ["pytest", "pytest-cov", "coverage"]
all = ["wxmplotls[dev, doc, test]"]