32 lines
672 B
TOML
32 lines
672 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "gptplus-auto"
|
|
version = "0.1.0"
|
|
description = "ChatGPT account tools with a direct CLI entry point"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"curl-cffi>=0.14.0",
|
|
"httpx[socks]>=0.27.0",
|
|
"playwright>=1.58.0",
|
|
"pydantic>=2.0.0",
|
|
"pydantic-settings>=2.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
gptplus-auto = "gptplus_auto.main:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["gptplus_auto"]
|
|
package-dir = { gptplus_auto = "src" }
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.package-data]
|
|
gptplus_auto = ["nodatadog.js"]
|
|
|
|
[dependency-groups]
|
|
dev = []
|