File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22# To use a consistent encoding
3- from codecs import open
3+ # from codecs import open
44from os import path
55
66here = path .abspath (path .dirname (__file__ ))
77
88# 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()
1111
1212setup (
1313 name = 'pygorithm' ,
14- version = '1.0' ,
14+ version = '1.0.4 ' ,
1515 description = 'A Python algorithms module for learning' ,
16- long_description = long_description ,
16+ long_description = open ( 'README.rst' ). read () ,
1717 # The project's main homepage.
18- url = 'https://github.com/OmkarPathak/pygorithms ' ,
18+ url = 'https://github.com/OmkarPathak/pygorithm ' ,
1919 # Author details
2020 author = 'Omkar Pathak' ,
2121 author_email = 'omkarpathak27@gmail.com' ,
3737 'Programming Language :: Python :: 3.3' ,
3838 'Programming Language :: Python :: 3.4' ,
3939 'Programming Language :: Python :: 3.5' ,
40+ 'Programming Language :: Python :: 3.6' ,
4041 ],
4142 packages = find_packages ()
4243)
You can’t perform that action at this time.
0 commit comments