-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparing for adding project to PyPi
- Loading branch information
1 parent
244ab6e
commit c50146d
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.