Created
December 24, 2019 14:25
-
-
Save rodrigofp-cit/a237b16dcc64669ef134d95f8a4f3db9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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, find_packages | |
REQUIREMENTS = [ | |
"scikit-learn", | |
"pandas", | |
"numpy", | |
"tensorflow==1.15.0", | |
"gcsfs", | |
"google-api-python-client" | |
] | |
setup(name='black_friday_forecast', | |
packages=find_packages(), | |
version="0.0.1", | |
include_package_data=True, | |
install_requires=REQUIREMENTS | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment