File size: 566 Bytes
39328ee
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
)