-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 706 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 706 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
from setuptools import setup, find_packages
setup(
name="ff-like-bot-pro",
version="2.0.0",
description="Production-grade Free Fire Like Bot for MENA Server",
author="FFBot Team",
python_requires=">=3.10",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"httpx[http2]>=0.27.0",
"pycryptodome>=3.20.0",
"protobuf>=5.26.0",
"aiosqlite>=0.20.0",
"pyyaml>=6.0.1",
"pydantic>=2.7.0",
"rich>=13.7.0",
"typer>=0.12.0",
"anyio>=4.3.0",
"asyncio-throttle>=1.0.2",
],
entry_points={
"console_scripts": [
"ffbot=main:app",
],
},
)