File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
# To use a consistent encoding
3
- from codecs import open
3
+ # from codecs import open
4
4
from os import path
5
5
6
6
here = path .abspath (path .dirname (__file__ ))
7
7
8
8
# Get the long description from the README file
9
- with open (path . join ( here , 'README.rst' ), encoding = 'utf-8 ' ) as f :
10
- long_description = f .read ()
9
+ # with open('README.rst') as f:
10
+ # long_description = f.read()
11
11
12
12
setup (
13
13
name = 'pygorithm' ,
14
- version = '1.0' ,
14
+ version = '1.0.4 ' ,
15
15
description = 'A Python algorithms module for learning' ,
16
- long_description = long_description ,
16
+ long_description = open ( 'README.rst' ). read () ,
17
17
# The project's main homepage.
18
- url = 'https://github.com/OmkarPathak/pygorithms ' ,
18
+ url = 'https://github.com/OmkarPathak/pygorithm ' ,
19
19
# Author details
20
20
author = 'Omkar Pathak' ,
21
21
37
37
'Programming Language :: Python :: 3.3' ,
38
38
'Programming Language :: Python :: 3.4' ,
39
39
'Programming Language :: Python :: 3.5' ,
40
+ 'Programming Language :: Python :: 3.6' ,
40
41
],
41
42
packages = find_packages ()
42
43
)
You can’t perform that action at this time.
0 commit comments