Skip to content

Commit

Permalink
Preparing for adding project to PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewRPorter committed Jul 13, 2017
1 parent 244ab6e commit c50146d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.pyc
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from setuptools import setup

try:
with open('LICENSE.txt', 'r') as f:
_license = f.read()
except:
_license = ''

setup(
name='yahoo-historical',
packages=['yahoo_historical'],
version='0.0.1',
description='Fetches historical EOD (end of day) prices from yahoo finance',
author='Andrew Porter',
author_email='[email protected]',
license=_license,
url='https://github.com/AndrewRPorter/yahoo-historical',
download_url='',
install_requires=['setuptools', 'pandas', 'requests'],
)
File renamed without changes.

0 comments on commit c50146d

Please sign in to comment.