File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ outdp.plot_outliers(df = df, col = "x")
70
70
This project is licensed under the terms of the [ GNU] ( license.txt ) - see the LICENSE file for details.
71
71
72
72
## Documentation
73
- The official documentation is hosted on: https://pypi.org/project/outdpik /
73
+ The official documentation is hosted on: https://outdpik.readthedocs.io/en/latest /
74
74
75
75
## Development
76
76
Want to contribute? Great!
Original file line number Diff line number Diff line change 1
1
2
2
from distutils .core import setup
3
+
4
+ from pathlib import Path
5
+ this_directory = Path (__file__ ).parent
6
+ long_description = (this_directory / "README.md" ).read_text ()
7
+
3
8
setup (
4
9
name = 'outdpik' ,
5
10
packages = ['outdpik' ],
6
- version = '1.2 ' ,
11
+ version = '1.3 ' ,
7
12
license = 'GNU' ,
8
13
description = 'The fundamental toolkit for outliers search and visualization' ,
9
14
author = 'Iker Cumplido' ,
10
15
author_email = 'ikumpli@gmail.com' ,
11
16
url = 'https://github.com/DanielPuentee/outdpik' ,
12
- download_url = 'https://github.com/DanielPuentee/outdpik/archive/refs/tags/1.2 .tar.gz' ,
17
+ download_url = 'https://github.com/DanielPuentee/outdpik/archive/refs/tags/1.3 .tar.gz' ,
13
18
keywords = ['OUTLIERS' , 'VISUALIZATION' , 'PANDAS' ],
19
+ long_description = long_description ,
20
+ long_description_content_type = 'text/markdown' ,
14
21
install_requires = [
15
22
'pandas' ,
16
23
'numpy' ,
You can’t perform that action at this time.
0 commit comments