-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (57 loc) · 1.66 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
# Copyright (c) 2025 ADernild
#
# Licensed under the MIT License. See LICENSE file in the project root for full license information.
#
# Author: ADernild
# Email: alex@dernild.dk
# Project: RORClient
# Description: Pyproject configuration for the RORClient package.
# Date: 2025-02-17
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rorclient"
version = "0.1.0"
description = "A Python client for interacting with the ROR API"
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "Alexander Dernild", email = "alex@dernild.dk" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"httpx>=0.28.1,<1.0",
"pydantic>=2.10.6,<3.0",
"backoff>=2.2.1,<3.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.1.14,<1.0",
"pytest>=8.3.4",
"pytest-mock>=3.14.0",
"pytest-asyncio>=0.25.3",
]
docs = [
"sphinx>=8.2.1,<9.0",
"sphinx-autobuild==2024.10.3",
"sphinx-autodoc-typehints>=3.1.0",
"sphinx-book-theme>=1.1.4",
]
[tool.ruff]
line-length = 88
extend-select = ["I"] # Enable import sorting
fix = true
[tool.ruff.format]
quote-style = "double"
[project.urls]
"Homepage" = "https://github.com/ADernild/RORClient"
"Bug Tracker" = "https://github.com/ADernild/RORClient/issues"