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
|
[build-system]
requires = ["setuptools >= 64", "setuptools_scm >= 8"]
build-backend = "setuptools.build_meta"
[project]
name = "NeXpy"
dynamic = ["version"]
description = "Python GUI to analyze NeXus data"
readme = "README.md"
license = {file = "COPYING"}
authors = [{name = "Raymond Osborn", email = "rayosborn@mac.com"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"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",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
]
keywords = [
"neutron scattering",
"x-ray scattering",
"data analysis",
"visualization",
]
requires-python = ">=3.9"
dependencies = [
"ansi2html",
"fabio",
"h5py",
"ipython",
"lmfit",
"matplotlib",
"mplcursors",
"nexusformat >= 2.0.0",
"numpy",
"packaging",
"pillow",
"pygments",
"pylatexenc",
"qtconsole",
"qtpy",
"scipy",
"importlib_metadata; python_version < '3.10'",
"importlib_resources; python_version < '3.10'"
]
[project.optional-dependencies]
testing = ["pytest"]
spec = ["spec2nexus"]
[project.urls]
Homepage = "https://nexpy.github.io/nexpy"
Repository = "https://github.com/nexpy/nexpy.git"
Issues = "https://github.com/nexpy/nexpy/issues"
Documentation = "https://nexpy.github.io/nexpy"
Changelog = "https://github.com/nexpy/nexpy/releases"
[project.gui-scripts]
nexpy = "nexpy.nexpygui:main"
[tool.setuptools_scm]
version_file = "src/nexpy/_version.py"
[tool.setuptools.package-data]
"nexpy.gui.resources" = ["*.*"]
"nexpy.examples" = ["*.*", "*/*.*", "*/*/*.*", "*/*/*/*.*"]
|