Skip to content

Commit

Permalink
Released version 1.0.4 on pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
OmkarPathak committed Sep 4, 2017
1 parent 96ab6f3 commit 68e02b0
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
# from codecs import open
from os import path

here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# with open('README.rst') as f:
# long_description = f.read()

setup(
name='pygorithm',
version='1.0',
version='1.0.4',
description='A Python algorithms module for learning',
long_description=long_description,
long_description=open('README.rst').read(),
# The project's main homepage.
url='https://github.com/OmkarPathak/pygorithms',
url='https://github.com/OmkarPathak/pygorithm',
# Author details
author='Omkar Pathak',
author_email='[email protected]',
Expand All @@ -37,6 +37,7 @@
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=find_packages()
)

0 comments on commit 68e02b0

Please sign in to comment.