Skip to content

Commit

Permalink
Version 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagarjuna Kumar committed Sep 9, 2018
1 parent dcda408 commit f1242d5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
from setuptools import setup

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

setup(name='corella',
version='0.1',
version='0.0.2',
description='correlation matrix plots on the terminal',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/nk412/corella',
author='Nagarjuna Kumarappan',
author_email='[email protected]',
license='MIT',
packages=['corella'],
install_requires=[
'pandas', 'colored'
'pandas>=0.23.4', 'colored>=1.3.93'
],
entry_points={
'console_scripts': ['corella=corella.cli:main']
Expand Down

0 comments on commit f1242d5

Please sign in to comment.