jensinjames's picture
Add 4 files
39328ee
raw
history blame contribute delete
566 Bytes
from setuptools import setup
setup(
name="storyline-generator",
version="1.0",
description="A Gradio-powered storyline generator for online advertising",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/author/storyline-generator",
author="Your Name",
author_email="your.email@example.com",
license="Apache License, Version 2.0",
packages=find_packages(),
install_requires=["numpy==1.20.1", "matplotlib==3.4.2", "gradio==3.39.0"],
zip_safe=False
)