Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Sandy4321/676b30577cdb615f6cc50f7fe6c011c7 to your computer and use it in GitHub Desktop.
Save Sandy4321/676b30577cdb615f6cc50f7fe6c011c7 to your computer and use it in GitHub Desktop.
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