Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate tabular #2

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ var/
.installed.cfg
*.egg

# IDE's
/.idea

# Installer logs
pip-log.txt
pip-delete-this-directory.txt
Expand Down
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import sys

from setuptools import find_packages, setup
import ti


def read(*filenames, **kwargs):
Expand All @@ -18,7 +19,7 @@ def read(*filenames, **kwargs):

setup(
name="ti",
version="0.1.1.dev0",
version=ti.__version__,
author="Shrikant Sharat",
author_email="[email protected]",
packages=find_packages(),
Expand All @@ -29,10 +30,14 @@ def read(*filenames, **kwargs):
long_description=read('README.rst', 'CHANGES.rst'),
entry_points={
'console_scripts': [
'ti = ti:main',
'ti = ti.time_tracking:main',
]
},
install_requires=["colorama", "pyyaml"],
install_requires=[
"colorama",
"PyYAML",
"tabulate"
],
setup_requires=["pytest-runner"] if testing else [],
tests_require=["pytest", "cram", "pytest-cram"],
extras_require={
Expand Down
Loading