Skip to content

Commit

Permalink
Create todo CLI shortcut to *topydo*
Browse files Browse the repository at this point in the history
  • Loading branch information
MinchinWeb committed Jan 3, 2018
1 parent dc54c51 commit a137803
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
prjct Changelog
===============

- :feature:`-` ``todo`` command line shortcut installed with ``prjct`` that
links to ``topydo``
- :bug:`-` [BREAKING CHANGE] switch from ``appdirs`` to ``xdg`` to determine
folder in which to store configuration. This is done so it's easier to find
the configuration folder to back it up. Run ``prjct config`` to generate the
Expand Down
4 changes: 2 additions & 2 deletions prjct/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

__title__ = 'prjct'
__tagline__ = 'Project Management for Living Life'
__version__ = "0.6.1-dev.20171128.0"
__version__ = "0.7.0-dev20180103"
__author__ = 'William Minchin'
__email__ = 'w_minchin@hotmail.com'
__license__ = 'MIT License'
__copyright__ = 'Copyright 2013-17 William Minchin'
__copyright__ = 'Copyright 2013-18 William Minchin'
__url__ = 'https://github.com/MinchinWeb/prjct'

# import submodules
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,9 @@ def read_requirements(*parts):
# ],
entry_points={
'console_scripts': [
'prjct=prjct.cli:main',
'prjct = prjct.cli:main',
'jrnl = prjct._vendor.jrnl.cli:run',
'todo = topydo.ui.UILoader:main', # probably move to separate package for v1 release
],
},
)

0 comments on commit a137803

Please sign in to comment.