Skip to content

Commit 9a673b1

Browse files
committed
last version with the documentation
1 parent f8d4131 commit 9a673b1

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ outdp.plot_outliers(df = df, col = "x")
7070
This project is licensed under the terms of the [GNU](license.txt) - see the LICENSE file for details.
7171

7272
## 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/
7474

7575
## Development
7676
Want to contribute? Great!

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11

22
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+
38
setup(
49
name = 'outdpik',
510
packages = ['outdpik'],
6-
version = '1.2',
11+
version = '1.3',
712
license= 'GNU',
813
description = 'The fundamental toolkit for outliers search and visualization',
914
author = 'Iker Cumplido',
1015
author_email = 'ikumpli@gmail.com',
1116
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',
1318
keywords = ['OUTLIERS', 'VISUALIZATION', 'PANDAS'],
19+
long_description=long_description,
20+
long_description_content_type='text/markdown',
1421
install_requires=[
1522
'pandas',
1623
'numpy',

0 commit comments

Comments
 (0)