mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2024-11-07 18:40:13 +03:00
17 lines
379 B
Python
17 lines
379 B
Python
from setuptools import setup
|
|
setup(
|
|
name="wordcloud_generator",
|
|
version="1.0",
|
|
description="A word cloud generator program",
|
|
author="ChatDev",
|
|
py_modules=["main"],
|
|
install_requires=[
|
|
"wordcloud",
|
|
"matplotlib"
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"wordcloud_generator=main:WordCloudGenerator"
|
|
]
|
|
}
|
|
) |