Skip to content

Commit 537e4fb

Browse files
authoredJun 6, 2018
add to python package index (keon#320)
1 parent d0464cc commit 537e4fb

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed
 

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ For running all tests write down:
3434
## Install
3535
If you want to use the API algorithms in your code, it is as simple as:
3636

37-
$ pip3 install git+https://github.com/keon/algorithms
37+
$ pip3 install algorithms
3838

3939
You can test by creating a python file: (Ex: use `merge_sort` in `sort`)
4040

‎setup.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,26 @@
33
import re
44
from setuptools import find_packages, setup
55

6+
7+
def long_description():
8+
with io.open('README.md', 'r', encoding='utf-8') as f:
9+
readme = f.read()
10+
return readme
11+
12+
613
setup(name='algorithms',
7-
version='1.1',
14+
version='0.1.0',
815
description='Pythonic Data Structures and Algorithms',
16+
long_description=long_description(),
917
url='https://github.com/keon/algorithms',
10-
author='Keon Kim, Hai Hoang Dang, Rahul Goswami, Christian Bender, Saad',
18+
author='Algorithms Team & Contributors',
19+
author_email="kwk236@gmail.com",
1120
license='MIT',
1221
packages=find_packages(),
1322
classifiers=[
1423
'Programming Language :: Python :: 3',
1524
'Programming Language :: Python :: 3.4',
1625
'Programming Language :: Python :: 3.5',
26+
'Programming Language :: Python :: 3.6',
1727
],
1828
zip_safe=False)

0 commit comments

Comments
 (0)
Please sign in to comment.