-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.31 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
[tool.poetry]
name = "flareio"
version = "0.1.25"
description = "Python SDK for the flare.io API."
authors = ["Alexandre Viau <[email protected]>"]
readme = "README.md"
repository = "https://github.com/Flared/python-flareio"
license = "MIT"
keywords = [
"flare",
"sdk",
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
packages = [
{ include = "flareio" },
]
[tool.poetry.dependencies]
python = ">=3.8"
requests = ">=2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "8.3.2"
mypy = "^1.11.1"
requests-mock = "^1.12.1"
types-requests = "^2.32.0.20240712"
[tool.ruff.lint]
extend-select = [
"I",
"C411",
"C413",
"C414",
"C416",
"C417",
"C419",
]
[tool.ruff.lint.isort]
force-single-line = true
no-sections = true
lines-after-imports = 2
lines-between-types = 1
force-wrap-aliases = true
combine-as-imports = true
forced-separate = [
"typing",
"flareio",
]