Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
strongSoda committed Aug 25, 2019
1 parent 8cae6f2 commit aef7fd7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 1 addition & 4 deletions gopy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
name = "gopy"

from .sorting import bubble
from .search import lsearch, bsearch
name = "gopy"
5 changes: 5 additions & 0 deletions gopy/search/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name="search"


from .lsearch import *
from .bsearch import *
3 changes: 3 additions & 0 deletions gopy/sorting/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
name="sorting"

from .bubble import *
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
setuptools.setup(
name = 'gopy', # How you named your package folder (MyLib)
packages = ['gopy'], # Chose the same as "name"
version = '0.3', # Start with a small number and increase it with every change you make
version = '0.4', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'Python Data Structures and Algorithms', # Give a short description about your library
author = 'Imran Khan', # Type in your name
author_email = 'strongsoda2@gmail.com', # Type in your E-Mail
url = 'https://github.com/strongSoda/data-structures-and-algorithms', # Provide either the link to your github or to your website
download_url = 'https://github.com/strongSoda/data-structures-and-algorithms/archive/v0.3.tar.gz', # I explain this later on
download_url = 'https://github.com/strongSoda/data-structures-and-algorithms/archive/v0.4.tar.gz', # I explain this later on
keywords = ['data structures', 'algorithms', 'python'], # Keywords that define your package best
install_requires=[ # I get to this in a second
],
Expand Down

0 comments on commit aef7fd7

Please sign in to comment.