File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 7
7
except ImportError :
8
8
from distutils .core import setup
9
9
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
+
10
16
setup (
11
17
name = 'pandas-profiling' ,
12
- version = '1.4.1 ' ,
18
+ version = '1.4.2 ' ,
13
19
author = 'Jos Polfliet' ,
14
20
15
21
packages = ['pandas_profiling' ],
16
- url = 'http ://github.com/jospolfliet /pandas-profiling' ,
22
+ url = 'https ://github.com/pandas-profiling /pandas-profiling' ,
17
23
license = 'MIT' ,
18
24
description = 'Generate profile report for pandas DataFrame' ,
19
25
install_requires = [
36
42
'Programming Language :: Python :: 3' ,
37
43
'Programming Language :: Python :: 3.4' ,
38
44
'Programming Language :: Python :: 3.5' ,
39
- 'Programming Language :: Python :: 3.6'
45
+ 'Programming Language :: Python :: 3.6' ,
46
+ 'Programming Language :: Python :: 3.7'
40
47
41
48
],
42
49
keywords = 'pandas data-science data-analysis python jupyter ipython' ,
50
+ long_description = long_description ,
51
+ long_description_content_type = 'text/markdown'
43
52
44
53
)
You can’t perform that action at this time.
0 commit comments