diff --git a/pyproject.toml b/pyproject.toml index d9263df..8090b28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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] Homepage = "https://git.much-data.ru/much-data/kwork-api" Repository = "https://git.much-data.ru/much-data/kwork-api.git"