mindXtrain / wordpress_agent /pyproject.toml
Gregory-L's picture
fork mindXtrain from GitHub (Professor-Codephreak/mindXtrain@661bd41) as the mindX-specific line
dfb775d verified
Raw
History Blame Contribute Delete
2.15 kB
[build-system]
requires = ["hatchling>=1.21.0"]
build-backend = "hatchling.build"
[project]
name = "wordpress-agent"
version = "0.1.0"
description = "Agnostic publishing tool that takes finished content and posts it to WordPress."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "Apache-2.0" }
authors = [
{ name = "BANKON", email = "codephreak@pythai.net" },
]
keywords = ["wordpress", "publishing", "agent", "mindx", "agenticplace"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.3.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"python-multipart>=0.0.9",
"click>=8.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-httpx>=0.30.0",
"pytest-cov>=5.0.0",
"ruff>=0.5.0",
"mypy>=1.10.0",
]
[project.scripts]
wordpress-agent = "wordpress_agent.cli:main"
wordpress-agent-server = "wordpress_agent.server:run"
[project.urls]
Homepage = "https://github.com/codephreak/wordpress-agent"
Repository = "https://github.com/codephreak/wordpress-agent"
Documentation = "https://github.com/codephreak/wordpress-agent#readme"
Issues = "https://github.com/codephreak/wordpress-agent/issues"
[tool.hatch.build.targets.wheel]
packages = ["wordpress_agent"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "A", "C4", "RET", "SIM"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.12"
strict = true
warn_unused_ignores = true
warn_return_any = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-ra --strict-markers --cov=wordpress_agent --cov-report=term-missing"