File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
# -*- coding: utf-8 -*-
3
3
from setuptools import setup , find_packages
4
+ from os import path
4
5
5
- with open ('README.md' , 'r' ) as fh :
6
- long_description = fh .read ()
6
+
7
+ this_directory = path .abspath (path .dirname (__file__ ))
8
+ with open (path .join (this_directory , 'README.md' )) as f :
9
+ long_description = f .read ()
7
10
8
11
setup (
9
12
name = 'monkeylearn' ,
10
- version = '3.2.3 ' ,
13
+ version = '3.2.4 ' ,
11
14
author = 'MonkeyLearn' ,
12
15
author_email = 'hello@monkeylearn.com' ,
13
16
description = 'Official Python client for the MonkeyLearn API' ,
14
17
long_description = long_description ,
15
18
long_description_content_type = "text/markdown" ,
16
19
url = 'https://github.com/monkeylearn/monkeylearn-python' ,
17
- download_url = 'https://github.com/monkeylearn/monkeylearn-python/tarball/v3.2.3 ' ,
20
+ download_url = 'https://github.com/monkeylearn/monkeylearn-python/tarball/v3.2.4 ' ,
18
21
keywords = ['monkeylearn' , 'machine learning' , 'python' ],
19
22
classifiers = [
20
23
'Development Status :: 5 - Production/Stable' ,
You can’t perform that action at this time.
0 commit comments