Textwizai / setup.py
Erfan11's picture
Update setup.py
5f4a592 verified
raw
history blame
No virus
217 Bytes
from setuptools import setup, find_packages
setup(
name='textwiz',
version='1.0',
packages=find_packages(),
install_requires=[
'flask',
'python-dotenv',
'tensorflow',
],
)