Skip to content

Commit 275a002

Browse files
committed
Restrict python version
1 parent 3fc430d commit 275a002

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pyproject.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ maintainers = [
1414
description = "A python package implementing the stretched NMF algorithm."
1515
keywords = ['diffpy', 'PDF']
1616
readme = "README.rst"
17-
requires-python = ">=3.10"
17+
requires-python = ">=3.10, <3.13"
1818
classifiers = [
1919
'Development Status :: 4 - Beta',
2020
'Environment :: Console',
@@ -42,6 +42,9 @@ template = "{tag}"
4242
dev_template = "{tag}"
4343
dirty_template = "{tag}"
4444

45+
[project.scripts]
46+
snmf = "diffpy.snmf.stretchednmfapp:main"
47+
4548
[tool.setuptools.packages.find]
4649
where = ["src"] # list of folders that contain the packages (["."] by default)
4750
include = ["*"] # package names should match these glob patterns (["*"] by default)

0 commit comments

Comments
 (0)