-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
81 lines (71 loc) · 1.86 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
[project]
name = "magicalapi"
version = "1.5.1"
description = "This is a Python client that provides easy access to the MagicalAPI.com services, fully type annotated, and asynchronous."
authors = [
{ name = "MagicalAPI", email = "info@magicalapi.com" }
]
readme = "README.md"
license = "MIT"
requires-python = ">= 3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Typing :: Typed",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Framework :: AsyncIO",
"Framework :: Pytest",
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"httpx>=0.26.0",
"pydantic>=2.5.3",
"pydantic-settings>=2.1.0",
]
[project.urls]
Repository = "https://github.com/magicalapi/magicalapi-python"
Homepage = "https://github.com/magicalapi/magicalapi-python"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=7.4.4",
"faker>=22.4.0",
"pytest-dependency>=0.6.0",
"pytest-asyncio>=0.23.3",
"pytest-cov>=4.1.0",
"tox>=4.12.1",
"ruff>=0.3.4",
"tox-gh-actions>=3.2.0",
"tomli>=2.2.1",
"exceptiongroup>=1.2.2",
"twine>=6.0.1",
"pkginfo>=1.12.0",
]
[tool.uv]
package = true
[tool.pytest.ini_options]
testpaths = [
"tests",
]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = [
"F", # pyflakes
"UP", # pyupgrade
"I", # isort
]