Skip to content

Commit

Permalink
making changes about porting to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
justmert committed Apr 13, 2020
1 parent 4000ae5 commit 80e5091
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
16 changes: 8 additions & 8 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,11 +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
Taskboard/editor.py
Taskboard/help.py
Taskboard/jsonparse.py
Taskboard/main.py
Taskboard/operations.py
Taskboard/preferences.py
Taskboard/render.py
Taskboard/task.py
File renamed without changes.
1 change: 0 additions & 1 deletion Taskboard/preferences.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from pathlib import Path
import os
import json
from pathlib import Path
Expand Down
Binary file removed dist/TaskIt-0.1.tar.gz
Binary file not shown.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
from distutils.core import setup

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name='Taskboard',
packages=['Taskboard'],
version='0.1',
license='MIT',
description=' Tasks, boards, notes & code snippets for the command-line environment',
long_description=long_description,
long_description_content_type="text/markdown",
author='Mert Köklü',
author_email='kklumert@gmail.com',
url='https://github.com/Marceliny/Taskboard',
Expand All @@ -14,6 +20,9 @@
install_requires=[
"pyperclip",
],
entry_points = {
'console_scripts': ['taskboard=Taskbook.__main__:main'],
},
python_requires='>=3',
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 80e5091

Please sign in to comment.