mirror of
https://git.zavage.net/Zavage-Software/smileyface.git
synced 2026-06-25 18:12:48 -06:00
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
68 lines
1.6 KiB
TOML
68 lines
1.6 KiB
TOML
[tool.poetry]
|
|
name = "smileyface"
|
|
version = "0.1.0"
|
|
description = "smileyface UT4 hub automator hosting"
|
|
authors = [
|
|
"Mathew Guest <mat@zavage.net>",
|
|
]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://zavage-software.com/portfolio/smileyface"
|
|
repository = "https://git-mirror.zavage.net/zavage-software/smileyface"
|
|
documentation = "https://git-mirror.zavage.net/zavage-software/smileyface"
|
|
keywords = ["cas"]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
]
|
|
|
|
packages = [{ include = "smileyface" }]
|
|
include = [
|
|
"README.md",
|
|
]
|
|
|
|
# [tool.poetry.scripts]
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8,<4.0"
|
|
pydantic-settings = ">=2.0"
|
|
click = ">=8.0"
|
|
platformdirs = ">=3.0"
|
|
sqlparse = "*"
|
|
selenium = ">=4.0"
|
|
importlib-resources = { version = ">=5.0", python = "<3.9" }
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "*"
|
|
pre-commit = "*"
|
|
isort = "*"
|
|
flake8 = "*"
|
|
pytest = "*"
|
|
nox = "*"
|
|
#Sphinx = "^5.3.0"
|
|
#sphinx-rtd-theme = "^1.3.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
target-version = ['py38', 'py39', 'py310', 'py311', 'py312', 'py313']
|
|
|
|
[tool.isort]
|
|
multi_line_output = 3
|
|
combine_as_imports = true
|
|
include_trailing_comma = true
|
|
force_grid_wrap = 3
|
|
ensure_newline_before_comments = true
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
addopts = "-ra"
|