-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (55 loc) · 1.48 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (55 loc) · 1.48 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
import setuptools
os.environ["PYTHONIOENCODING"] = "utf-8"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="al-script",
version="0.1.0",
author="al-script contributors",
description="Game automation framework extracted from Alas",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/your-org/al-script",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
],
install_requires=[
"opencv-python>=4.5",
"numpy>=1.21",
"Pillow>=9.0",
"scipy>=1.7",
"scikit-image>=0.18",
"pywin32>=306",
"psutil>=5.8",
"adb-shell>=0.4",
"PySide6>=6.5",
"requests>=2.28",
"pyappify>=1.0.2",
],
extras_require={
"update": ["gitpython>=3.1"],
"ocr": [
"cnocr>=2.2",
"paddleocr>=2.7",
],
"dev": [
"pytest>=7.0",
],
},
entry_points={
"console_scripts": [
"al-script=module.launcher:main",
],
"gui_scripts": [
"al-script-gui=module.gui.launcher:main",
],
},
python_requires=">=3.13",
zip_safe=False,
)