初始化项目以及GUI简单实现
This commit is contained in:
47
pyproject.toml
Normal file
47
pyproject.toml
Normal file
@@ -0,0 +1,47 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=61.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "LuoLuoTool"
|
||||
version = "0.1"
|
||||
description = "《桃源深处有人家》日常任务挂机工具"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.9"
|
||||
license = {text = "MIT"}
|
||||
authors = [
|
||||
{name = "moweishan", email = ""}
|
||||
]
|
||||
keywords = ["game", "automation", "挂机", "桃源深处有人家"]
|
||||
classifiers = [
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Intended Audience :: End Users/Desktop",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: Microsoft :: Windows",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
]
|
||||
|
||||
dependencies = [
|
||||
"customtkinter>=5.2.2",
|
||||
"Pillow>=10.0.0",
|
||||
"pyautogui>=0.9.54",
|
||||
"pywin32>=306",
|
||||
"opencv-python>=4.8.0",
|
||||
"numpy>=1.24.0",
|
||||
"loguru>=0.7.0",
|
||||
]
|
||||
|
||||
[project.gui-scripts]
|
||||
luoluo = "src.main:main"
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://bk.moweishan.top/"
|
||||
Repository = "https://github.com/moweishan/LuoLuoTool"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["."]
|
||||
include = ["src*"]
|
||||
Reference in New Issue
Block a user