32 lines
483 B
TOML
32 lines
483 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = nmreval
|
|
version = 0.1
|
|
description = Evaluation of data
|
|
license = {text = "BSD 3-Clause License"}
|
|
|
|
[tool.setuptools]
|
|
include_package_data = true
|
|
|
|
[tool.setuptools.packages]
|
|
find = {}
|
|
scripts = bin/evaluate.py
|
|
|
|
[tool.setuptools.packages.find]
|
|
include =[
|
|
'nmreval*',
|
|
'gui_qt*',
|
|
'resources*',
|
|
]
|
|
|
|
[tool.setuptools.package_data]
|
|
* = *.txt, *.npz, *.png, *.json
|
|
|
|
|
|
|
|
|
|
|