neural-style / setup.py
dogeplusplus's picture
Refactor application to just use the model locally and not need gRPC.
15c5016
raw
history blame contribute delete
319 Bytes
from setuptools import setup, find_packages
with open("requirements.txt") as f:
requirements = f.readlines()
setup(
name="neural-style",
version="",
packages=find_packages(),
install_requires=requirements,
url="",
license="",
author="albert",
author_email="",
description=""
)