forked from CamouChat-Team/camouchat-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 995 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (31 loc) · 995 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
from setuptools import setup, find_packages
setup(
name="tweakio-SDK",
version="0.1.4",
description="High-performance, anti-detection WhatsApp automation SDK. Features async SQLite storage, rate limiting, and human-like interaction loops.",
author="Rohit",
author_email="keepquit000@gmail.com", # Update with actual email if known, else leave blank or placeholder
packages=find_packages(),
py_modules=[
"ChatLoader",
"MessageProcessor",
"Extra",
"Storage",
"directory",
"Errors",
"Reply",
"Shared_Resources",
"login",
"selector_config",
"unread_handler",
"_Humanize",
"_Media"
],
classifiers=[
"Programming Language :: Python :: 3",
"Framework :: Playwright",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8", install_requires=['playwright']
)