Skip to content

Commit

Permalink
Fix PyPi readme. Bump to 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jos Polfliet committed Apr 27, 2019
1 parent 711975d commit 003d236
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,19 @@
except ImportError:
from distutils.core import setup

# read the contents of README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='pandas-profiling',
version='1.4.1',
version='1.4.2',
author='Jos Polfliet',
author_email='[email protected]',
packages=['pandas_profiling'],
url='http://github.com/jospolfliet/pandas-profiling',
url='https://github.com/pandas-profiling/pandas-profiling',
license='MIT',
description='Generate profile report for pandas DataFrame',
install_requires=[
Expand All @@ -36,9 +42,12 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'

],
keywords='pandas data-science data-analysis python jupyter ipython',
long_description=long_description,
long_description_content_type='text/markdown'

)

0 comments on commit 003d236

Please sign in to comment.