Skip to content

Commit dfa4910

Browse files
committed
setup library behavior
1 parent 42dac41 commit dfa4910

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

diffpy/snmf/main.py renamed to diffpy/snmf/stretchednmfapp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
def main():
2-
pass
2+
print("Hello World!")
33

44

55
if __name__ == "__main__":

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
# Installation script for diffpy.pdfmorph
3+
# Installation script for diffpy.snmf
44

55
"""diffpy.snmf - a package implementing the stretched NMF algorithm.
66
@@ -28,7 +28,7 @@
2828
entry_points={
2929
# define console_scripts here, see setuptools docs for details.
3030
'console_scripts': [
31-
'pdfmorph = diffpy.pdfmorph.pdfmorphapp:main',
31+
'stretched_nmf = diffpy.snmf.stretchednmfapp:main',
3232
],
3333
},
3434
test_suite='tests',

0 commit comments

Comments
 (0)