Skip to content
This repository has been archived by the owner on Apr 17, 2020. It is now read-only.

Commit

Permalink
added setup for setuptools. changed get_num.py to utils.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdkr committed Sep 8, 2015
1 parent 93dbd3a commit a6b3134
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion banks/CapitalOne.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import requests
import time
from bs4 import BeautifulSoup
from get_num import get_num
from utils import get_num

class CapitalOne(Thread):

Expand Down
19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from setuptools import setup

setup(
name='pybank',
version='0.2',
py_modules=['pybank'],
install_requires=[
'pyyaml',
'appdirs',
'requests',
'beautifulsoup4',
'tabulate',
'click'
],
entry_points='''
[console_scripts]
pybank=pybank:cli
''',
)
File renamed without changes.

0 comments on commit a6b3134

Please sign in to comment.