Skip to content

Commit 8bc03e0

Browse files
Add entry point to the CLI app (#119)
* Restrict python version * Add entry point and fix typo in command-line * Add news * [pre-commit.ci] auto fixes from pre-commit hooks --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 3fc430d commit 8bc03e0

File tree

4 files changed

+33
-16
lines changed

4 files changed

+33
-16
lines changed

.github/workflows/publish-docs-on-release.yml

-14
This file was deleted.

news/fix-cli.rst

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
**Added:**
2+
3+
* <news item>
4+
5+
**Changed:**
6+
7+
* <news item>
8+
9+
**Deprecated:**
10+
11+
* <news item>
12+
13+
**Removed:**
14+
15+
* <news item>
16+
17+
**Fixed:**
18+
19+
* Add entry point to the application
20+
* Fix CLI bug due to typo
21+
22+
**Security:**
23+
24+
* <news item>

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)

src/diffpy/snmf/stretchednmfapp.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def create_parser():
2525
help="The directory where the results will be written. Defaults to '<input_directory>/snmf_results'.",
2626
)
2727
parser.add_argument(
28-
"t",
28+
"-t",
2929
"--data-type",
3030
type=str,
3131
default=None,
@@ -58,3 +58,7 @@ def main():
5858
variables = initialize_variables(lifted_input_data, args.number_of_components, args.data_type)
5959
components = initialize_components(variables["number_of_components"], variables["number_of_signals"], grid)
6060
return components
61+
62+
63+
if __name__ == "__main__":
64+
main()

0 commit comments

Comments
 (0)