Skip to content

Commit 003d236

Browse files
author
Jos Polfliet
committed
Fix PyPi readme. Bump to 1.4.2
1 parent 711975d commit 003d236

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

setup.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,19 @@
77
except ImportError:
88
from distutils.core import setup
99

10+
# read the contents of README file
11+
from os import path
12+
this_directory = path.abspath(path.dirname(__file__))
13+
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
14+
long_description = f.read()
15+
1016
setup(
1117
name='pandas-profiling',
12-
version='1.4.1',
18+
version='1.4.2',
1319
author='Jos Polfliet',
1420
author_email='[email protected]',
1521
packages=['pandas_profiling'],
16-
url='http://github.com/jospolfliet/pandas-profiling',
22+
url='https://github.com/pandas-profiling/pandas-profiling',
1723
license='MIT',
1824
description='Generate profile report for pandas DataFrame',
1925
install_requires=[
@@ -36,9 +42,12 @@
3642
'Programming Language :: Python :: 3',
3743
'Programming Language :: Python :: 3.4',
3844
'Programming Language :: Python :: 3.5',
39-
'Programming Language :: Python :: 3.6'
45+
'Programming Language :: Python :: 3.6',
46+
'Programming Language :: Python :: 3.7'
4047

4148
],
4249
keywords='pandas data-science data-analysis python jupyter ipython',
50+
long_description=long_description,
51+
long_description_content_type='text/markdown'
4352

4453
)

0 commit comments

Comments
 (0)