We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42dac41 commit dfa4910Copy full SHA for dfa4910
diffpy/snmf/main.py renamed to diffpy/snmf/stretchednmfapp.py
@@ -1,5 +1,5 @@
1
def main():
2
- pass
+ print("Hello World!")
3
4
5
if __name__ == "__main__":
setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
-# Installation script for diffpy.pdfmorph
+# Installation script for diffpy.snmf
"""diffpy.snmf - a package implementing the stretched NMF algorithm.
6
@@ -28,7 +28,7 @@
28
entry_points={
29
# define console_scripts here, see setuptools docs for details.
30
'console_scripts': [
31
- 'pdfmorph = diffpy.pdfmorph.pdfmorphapp:main',
+ 'stretched_nmf = diffpy.snmf.stretchednmfapp:main',
32
],
33
},
34
test_suite='tests',
0 commit comments