Skip to content

Commit 68e02b0

Browse files
committed
Released version 1.0.4 on pypi
1 parent 96ab6f3 commit 68e02b0

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
from setuptools import setup, find_packages
22
# To use a consistent encoding
3-
from codecs import open
3+
# from codecs import open
44
from os import path
55

66
here = 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

1212
setup(
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='[email protected]',
@@ -37,6 +37,7 @@
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
)

0 commit comments

Comments
 (0)