fix: restore missing [project] section in pyproject.toml
Some checks failed
Release & Publish / build (push) Failing after 45s
Release & Publish / publish-gitea (push) Has been skipped
Release & Publish / docs (push) Has been skipped

This commit is contained in:
root 2026-03-29 00:05:19 +00:00
parent 309aca6036
commit 6198de6d65

View File

@ -1,3 +1,41 @@
[project]
name = "kwork-api"
version = "0.1.0"
description = "Unofficial Kwork.ru API client"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Claw", email = "claw@localhost"}
]
keywords = ["kwork", "api", "client", "parsing", "freelance"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"httpx[http2]>=0.26.0",
"pydantic>=2.0.0",
"structlog>=24.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.23.0",
"respx>=0.20.0",
"ruff>=0.3.0",
]
[project.urls] [project.urls]
Homepage = "https://git.much-data.ru/much-data/kwork-api" Homepage = "https://git.much-data.ru/much-data/kwork-api"
Repository = "https://git.much-data.ru/much-data/kwork-api.git" Repository = "https://git.much-data.ru/much-data/kwork-api.git"