-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 905 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
Setup configuration
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="whatsapp-chatgpt-python",
version="1.0.0",
author="GREEN-API",
author_email="support@green-api.com",
description="A modern WhatsApp bot library with OpenAI GPT integration on Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/green-api/whatsapp-chatgpt-python",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
license="MIT",
python_requires=">=3.7",
install_requires=[
"whatsapp-chatbot-python>=0.9.6",
"openai>=1.66.3",
"requests>=2.32.3"
],
)