-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (67 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
72 lines (67 loc) · 1.85 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
67
68
69
70
71
72
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "WrightTools"
authors =[{name="WrightTools Developers"}]
description="Tools for loading, processing, and plotting multidimensional spectroscopy data."
readme = "README.rst"
requires-python = ">=3.7"
dynamic = ["version"]
dependencies = [
"h5py",
"imageio>=2.28.0",
"matplotlib>=3.4.0",
"numexpr",
"numpy>=1.15.0",
"pint",
"python-dateutil",
"scipy",
"click",
"tidy_headers>=1.0.4",
"rich",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Framework :: Matplotlib",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
]
keywords = ["spectroscopy", "science", "multidimensional", "visualization"]
license="MIT"
license-files = ["LICEN[CS]E*"]
[project.optional-dependencies]
docs = [
"sphinx<9.0",
"sphinx-gallery",
"sphinx-rtd-theme"
]
dev = [
"black",
"pre-commit",
"pydocstyle",
"pytest",
"pytest-cov",
"databroker<2",
"msgpack",
"sphinx<9.0",
"sphinx-gallery",
"sphinx-rtd-theme"
]
[project.urls]
Homepage = "https://github.com/wright-group/WrightTools"
Documentation = "https://wright.tools"
Repository = "https://github.com/wright-group/WrightTools.git"
Issues = "https://github.com/wright-group/WrightTools/issues"
Changelog = "https://github.com/wright-group/WrightTools/blob/master/CHANGELOG.md"
[project.scripts]
wt5 = "WrightTools.cli._wt5:cli"
wt-convert = "WrightTools.cli._units:cli"
[tool.setuptools.dynamic]
version = {file = "WrightTools/VERSION"}