Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
slawek87 committed Dec 26, 2014
1 parent 10f29cb commit 527c4c5
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ What is yql-finance?
===========
yql-finance is simple and fast https://developer.yahoo.com/yql/console/ python API.
API returns stock closing prices for current period of time and current stock ticker (i.e. APPL, GOOGL).
Stock prices: NASDAQ, SP&500, DAX etc.

How to use it?
==============
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
28 changes: 28 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# -*- coding: utf-8 -*-
from distutils.core import setup

try:
with open('README.md', 'r') as f:
readme = f.read()

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

setup(
name='yql-finance',
version='0.1.0',
packages=['yql'],
url='',
download_url='https://github.com/slawek87/yql-finance',
license=license_,
author=u'Sławomir Kabik',
author_email='slawek@redsoftware.pl',
description='yql-finance is simple and fast https://developer.yahoo.com/yql/console/ python API. API returns'
'stock closing prices for current period of time and current stock ticker (i.e. APPL, GOOGL).',
long_description=readme,
keywords=['Yahoo YQL API', 'NASDAQ', 'S&P500', 'DAX', 'Stock prices'],
install_requires=['setuptools', 'requests' 'python-dateutil'],
)

0 comments on commit 527c4c5

Please sign in to comment.