fix: restore missing [project] section in pyproject.toml
This commit is contained in:
parent
309aca6036
commit
6198de6d65
@ -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"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user