aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 55631d707838a69bb81e01fb6dd850737fbae56c (plain) (blame)
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
[project]
name = "oguri"
version = "0.1.0"
description = "Command-line tool for AniList"
authors = [{ name = "Fuwn", email = "[email protected]" }]
dependencies = [
    "ariadne-codegen @ git+https://github.com/flonou/ariadne-codegen@field_names_should_not_be_converted_to_snake-case",
    "asyncio>=3.4.3",
    "rich>=14.0.0",
    "click-aliases>=1.0.5",
]
requires-python = ">= 3.13"

[project.scripts]
"oguri" = "oguri.cli:main_script"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.rye]
managed = true
dev-dependencies = ["black>=25.1.0"]

[tool.hatch.metadata]
allow-direct-references = true

[tool.hatch.build.targets.wheel]
packages = ["src/oguri"]

[tool.ariadne-codegen]
schema_path = "schema.graphql"
target_package_name = "anilist_client"
target_package_path = "src"
enable_custom_operations = true