-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
24 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# file GENERATED by distutils, do NOT edit | ||
setup.cfg | ||
setup.py | ||
TaskIt/editor.py | ||
TaskIt/help.py | ||
TaskIt/jsonparse.py | ||
TaskIt/main.py | ||
TaskIt/operations.py | ||
TaskIt/preferences.py | ||
TaskIt/render.py | ||
TaskIt/task.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# TaskIt | ||
# Taskboard | ||
Tasks, boards, notes & code snippets for the command-line environment |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
from distutils.core import setup | ||
setup( | ||
name='TaskIt', | ||
packages=['TaskIt'], | ||
name='Taskboard', | ||
packages=['Taskboard'], | ||
version='0.1', | ||
license='MIT', | ||
description=' Tasks, boards, notes & code snippets for the command-line environment', | ||
author='Mert Köklü', | ||
author_email='[email protected]', | ||
url='https://github.com/Marceliny/TaskIt', | ||
download_url='https://github.com/Marceliny/TaskIt/archive/v_01.tar.gz', | ||
url='https://github.com/Marceliny/Taskboard', | ||
download_url='https://github.com/Marceliny/Taskboard/archive/v_01.tar.gz', | ||
keywords=['task', 'board', 'notes', 'taskbook', 'snippet', | ||
'command-line'], | ||
install_requires=[ | ||
|
@@ -18,11 +18,10 @@ | |
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
'Intended Audience :: Developers', | ||
'License :: MIT License', | ||
"Operating System :: MacOS" | ||
"Operating System :: Unix" | ||
"Programming Language :: Python :: 3 :: Only" | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: MIT License', | ||
"Operating System :: MacOS", | ||
"Operating System :: Unix", | ||
"Programming Language :: Python :: 3 :: Only", | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
|