Skip to content

Commit

Permalink
fix install bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Koushikphy committed Nov 20, 2022
1 parent 7c88cb7 commit 6e9aa2f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion kfutils/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import glob
import numpy as np

from funcs import *
from kfutils.funcs import *


__all__ = []
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
txt = f.read()

setup(name='kfutils',
version='0.1.1',
version='0.1.2',
description='A tool for common data file operation.',
long_description=txt,
long_description_content_type='text/markdown',
Expand All @@ -25,10 +25,10 @@
zip_safe=True,
python_requires='>=3.6',
packages=find_packages(),
install_require={
'csaps': ["csaps"],
'tabulate': ["tabulate"]
},
install_requires=[
'csaps',
'tabulate'
],
entry_points={
'console_scripts': [
'kfutils = kfutils.cli:main',
Expand Down

0 comments on commit 6e9aa2f

Please sign in to comment.