-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (69 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (69 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling>=1.31,<2"]
build-backend = "hatchling.build"
[project]
name = "eksiapi"
version = "1.5.0"
description = "Unofficial Python client and MCP server for Ekşi Sözlük"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
keywords = ["eksi-sozluk", "api", "mcp", "model-context-protocol"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"curl-cffi>=0.16,<1",
"cryptography>=50,<51",
]
[project.optional-dependencies]
mcp = [
"keyring>=25.7,<26",
"mcp>=2.0,<3",
"pydantic>=2.13,<3",
]
[project.scripts]
eksiapi = "eksiapi.cli:main"
[project.urls]
Homepage = "https://github.com/agmmnn/eksiapi"
Documentation = "https://documenter.getpostman.com/view/24047519/2sBY4VLHxb"
Issues = "https://github.com/agmmnn/eksiapi/issues"
Source = "https://github.com/agmmnn/eksiapi"
[dependency-groups]
dev = [
"keyring>=25.7,<26",
"mcp[cli]>=2.0,<3",
"openapi-spec-validator>=0.9,<1",
"pydantic>=2.13,<3",
"pytest>=9.1,<10",
"pytest-cov>=7.1,<8",
"pyyaml>=6.0.3,<7",
"ruff>=0.16,<1",
"twine>=7,<8",
]
[tool.hatch.build.targets.wheel]
packages = ["eksiapi"]
[tool.pytest.ini_options]
addopts = ["--strict-config", "--strict-markers"]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["eksiapi"]
[tool.coverage.report]
fail_under = 80
show_missing = true
skip_covered = true
[tool.coverage.xml]
output = "coverage.xml"
[tool.ruff]
target-version = "py310"