Created
March 20, 2017 06:55
-
-
Save masayang/bfb93bf3b6eebb875116f05f62599b9e to your computer and use it in GitHub Desktop.
setup.py
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
from setuptools import setup | |
setup( | |
name='flask_yahoo_finance', | |
version='0.1', | |
long_description=__doc__, | |
packages=['flask_yahoo_finance'], | |
include_package_data=True, | |
zip_safe=False, | |
install_requires=['yahoo-finance'] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment