-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
44 lines (41 loc) · 1.49 KB
/
setup.py
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
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import find_packages
from setuptools import setup
long_description = open("README.md", encoding="utf-8").read()
description = ("WPP_Whatsapp aim of exporting functions from WhatsApp Web to the python, which can be used to support "
"the creation of any interaction, such as customer service, media sending, intelligence recognition "
"based on phrases artificial and many other things, use your imagination")
version = "0.4.8.1"
setup(
name="WPP_Whatsapp",
version=version,
license="MIT License",
author="Ammar Alkotb",
author_email="ammar.alkotb@gmail.com",
description=description,
packages=find_packages(),
url="https://github.com/3mora2/WPP_Whatsapp",
project_urls={"Bug Report": "https://github.com/3mora2/WPP_Whatsapp/issues/new"},
install_requires=[
"event-emitter-js",
"playwright>=1.43.0",
"playwright-stealth",
"Pillow",
"psutil",
"pyee",
'segno',
'typing_extensions',
"node-semver",
"aiohttp",
"PlaywrightSafeThread>=0.5.5"
],
long_description=long_description,
long_description_content_type="text/markdown",
package_dir={"": "."},
package_data={"WPP_Whatsapp": ["*/*.js", "*.md"]},
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)