Commit c71f6844 authored by Zolnierczuk, Piotr's avatar Zolnierczuk, Piotr
Browse files

improved pyproject.toml

parent 543a7b72
Loading
Loading
Loading
Loading

MANIFEST.in

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
recursive-include test      *.py
recursive-include test/data *.echo
include MANIFEST.in
include README.rst
include LICENSE
+15 −6
Original line number Diff line number Diff line
@@ -4,19 +4,21 @@ build-backend = "setuptools.build_meta"

[project]
name   = "pysen"
authors = [
	{name = "Piotr Zolnierczuk", email = "zolnierczukp@ornl.gov" },
]
license = "BSD-3-Clause"
description = "Python tools for the SNS-NSE instrument"
authors = [ {name = "Piotr Zolnierczuk", email = "zolnierczukp@ornl.gov" }, ]
#license = "BSD-3-Clause"
license = {file = "LICENSE" }
readme = "README.md"
description = "Python tools for the SNS-NSE instrument"
requires-python = ">=3.10"
dynamic = ["version", ]

classifiers = [
	"Development Status :: 4 - Beta",
	"License :: OSI Approved :: BSD License",
    "Programming Language :: Python :: 3",
    "Operating System :: OS Independent",
    "Topic :: Scientific/Engineering :: Physics"
    "Topic :: Scientific/Engineering",
    "Topic :: Scientific/Engineering :: Visualization",
]
dependencies = ['numpy', 'scipy', 'matplotlib', 'pandas', 'h5py' , 'qtpy', 'qtconsole']

@@ -27,9 +29,16 @@ nxs2taco= "pysen.inout.nxs2taco:main"
[tool.setuptools]
package-dir = {"pysen" = "pysen"}

#resources are in MANIFEST.in

[tool.setuptools.dynamic]
version = {attr = "pysen.revision.__version__"}

[tool.setuptools.package-data]
"pysen.ui.resources" = ["*.*"]
# "pysen.examples" = ["*.*", "*/*.*", "*/*/*.*", "*/*/*/*.*"]


[tool.coverage.run]
command_line = "-m pytest test"

+2 −2
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@
PySEN revision module
"""
import sys
__version__  = "2.0.7"
__date__     = "Oct 21, 2025"
__version__  = "2.0.8"
__date__     = "Oct 23, 2025"

def version(full=False):
    "get pysen version number"