Skip to content

Commit f19602b

Browse files
committed
v8
1 parent 8932b29 commit f19602b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,22 @@
22

33
from pathlib import Path
44
this_directory = Path(__file__).parent
5-
long_description = (this_directory / "README.md").read_text()
5+
#long_description = (this_directory / "README.md").read_text()
6+
with open(this_directory / "README.md", encoding='utf-8') as f:
7+
long_description = f.read()
68

79
setup(
810
name = 'ds11mltoolkit',
911
packages = ['ds11mltoolkit'],
10-
version = '1.8',
12+
version = '1.9',
1113
license = 'MIT',
1214
description = 'Helper functions for all stages of the machine learning model building process',
1315
long_description = long_description,
1416
long_description_content_type='text/markdown',
1517
author = 'TheBridgeMachineLearningPythonLibrary',
1618
author_email = 'seenstevol@protonmail.com',
1719
url = 'https://github.com/TheBridgeMachineLearningPythonLibrary/MachineLearningToolKit',
18-
download_url = 'https://github.com/TheBridgeMachineLearningPythonLibrary/MachineLearningToolKit/archive/refs/tags/v_1_8.tar.gz',
20+
download_url = 'https://github.com/TheBridgeMachineLearningPythonLibrary/MachineLearningToolKit/archive/refs/tags/v_1_9.tar.gz',
1921
keywords = ['machine learning', 'data visualization', 'data processing', 'sklearn', 'pandas'],
2022
install_requires=['pandas',
2123
'scipy',

0 commit comments

Comments
 (0)