Skip to content

Instantly share code, notes, and snippets.

@rodrigofp-cit
Created December 24, 2019 14:25
Show Gist options
  • Save rodrigofp-cit/a237b16dcc64669ef134d95f8a4f3db9 to your computer and use it in GitHub Desktop.
Save rodrigofp-cit/a237b16dcc64669ef134d95f8a4f3db9 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