Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarbette committed Sep 10, 2024
1 parent 06836f5 commit 690a276
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
1 change: 0 additions & 1 deletion npf-watch.py

This file was deleted.

2 changes: 1 addition & 1 deletion npf/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.58"
__version__ = "2.0.0"
18 changes: 11 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
url="https://github.com/tbarbette/npf",
packages=setuptools.find_packages(),
package_data={'': ['*.repo', '*.npf']},
py_modules=['npf_run', 'npf_compare', 'npf_watch'],
py_modules=['npf', 'npf_regress', 'npf_watch'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand All @@ -59,13 +59,17 @@
python_requires='>=3.6',
entry_points={
'console_scripts': [
'npf=npf_compare:main',
'npf-regress=npf_run:main',
'npf-run=npf_run:main',
'npf-compare=npf_compare:main',
'npf=npf:main',
'npf-regress=npf_regress:main',
'npf-watch=npf_watch:main',
'npf-run.py=npf_run:main',
'npf-compare.py=npf_compare:main',

#Backward compat
'npf-run=npf_regress:main',
'npf-compare=npf:main',

#With .py (backward compat)
'npf-run.py=npf_regress:main',
'npf-compare.py=npf:main',
'npf-watch.py=npf_watch:main',
],
},
Expand Down

0 comments on commit 690a276

Please sign in to comment.