-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
63 lines (54 loc) · 1.46 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mtgjson-sdk"
version = "0.1.2"
description = "Query client for MTGJSON card data"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "Robert Pratt" }]
keywords = ["mtg", "magic-the-gathering", "mtgjson", "cards", "sdk", "duckdb"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Games/Entertainment",
"Typing :: Typed",
]
dependencies = [
"duckdb>=1.1.0,<2.0",
"pydantic>=2.0",
"httpx>=0.27",
]
[project.urls]
Homepage = "https://mtgjson.com"
Repository = "https://github.com/mtgjson/mtgjson-sdk-python"
[project.optional-dependencies]
polars = ["polars>=1.0"]
all = ["polars>=1.0", "orjson>=3.9"]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pyarrow>=14.0",
"ruff>=0.4",
]
[tool.hatch.build.targets.wheel]
packages = ["mtgjson_sdk"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 88
src = [".", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.ruff.lint.isort]
known-first-party = ["mtgjson_sdk_python"]