forked from magicalapi/magicalapi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.68 KB
/
pyproject.toml
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
[tool.poetry]
name = "magicalapi"
version = "1.1.1"
description = "This is a Python client that provides easy access to the MagicalAPI.com services, fully type annotated, and asynchronous."
authors = ["MagicalAPI <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/magicalapi/magicalapi-python"
homepage = "https://github.com/magicalapi/magicalapi-python"
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",
]
[tool.poetry.dependencies]
python = ">=3.10"
httpx = "^0.26.0"
pydantic = "^2.5.3"
pydantic-settings = "^2.1.0"
[tool.poetry.group.dev.dependencies]
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"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = [
"F", # pyflakes
"UP", # pyupgrade
"I", # isort
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"