Skip to content

Commit

Permalink
project name changed
Browse files Browse the repository at this point in the history
  • Loading branch information
justmert committed Apr 13, 2020
1 parent 2c6548a commit 4000ae5
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 14 deletions.
11 changes: 11 additions & 0 deletions MANIFEST
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
2 changes: 1 addition & 1 deletion README.md
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.
4 changes: 2 additions & 2 deletions TaskIt/main.py → Taskboard/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def check_paths():
pr.paths['project_dir'] = pr.prefs['taskitDirectory'] + "/.taskit"
pr.paths['project_dir'] = pr.prefs['taskboardDirectory'] + "/.taskboard"
if not os.path.exists(pr.paths['project_dir']):
os.mkdir(pr.paths['project_dir'])
pr.paths['task_path'] = pr.paths['project_dir'] + "/tasks.json"
Expand Down Expand Up @@ -151,7 +151,7 @@ def main(arg):
else:
render_items()

inp = input("\n {}{}TaskIt{}{} {} ".format(
inp = input("\n {}{}Taskboard{}{} {} ".format(
colors.BLUE2, colors.BOLD, colors.END,
feedback(), icons['diamond'])).strip()

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions TaskIt/preferences.py → Taskboard/preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

def check_prefs():
paths['home'] = str(Path.home())
paths['config'] = paths['home'] + "/.taskit.conf"
paths['config'] = paths['home'] + "/.taskboard.conf"
if os.path.exists(paths['config']):
read_prefs()
else:
Expand All @@ -19,7 +19,7 @@ def check_prefs():


def set_prefs():
prefs["taskitDirectory"] = paths['home']
prefs["taskboardDirectory"] = paths['home']


def read_prefs():
Expand Down
File renamed without changes.
File renamed without changes.
Binary file added dist/TaskIt-0.1.tar.gz
Binary file not shown.
17 changes: 8 additions & 9 deletions setup.py
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=[
Expand All @@ -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',
Expand Down

0 comments on commit 4000ae5

Please sign in to comment.