Forked from rodrigofp-cit/black_friday_challenge_setup.py
Created
June 30, 2023 17:56
-
-
Save Sandy4321/676b30577cdb615f6cc50f7fe6c011c7 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