-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (63 loc) · 1.61 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
67
68
69
70
71
[project]
name = "NGOHub"
version = "0.0.9"
description = "Python client for ngohub.ro API"
readme = "README.md"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.11"
dependencies = [
]
[project.urls]
Homepage = "https://github.com/code4romania/pyngohub/"
Issues = "https://github.com/code4romania/pyngohub/issues"
Changelog = "https://github.com/code4romania/pyngohub/blob/main/CHANGELOG.md"
Download = "https://github.com/code4romania/pyngohub/tags"
[build-system]
requires = ["setuptools>=72.1"]
build-backend = "setuptools.build_meta"
[lint]
ignore = []
[tool.ruff]
exclude = [
".eggs",
".git",
".ruff_cache",
".venv",
".vscode",
"__pypackages__",
"dist",
"venv",
]
line-length = 120
target-version = "py311"
[tool.black]
line-length = 120
target-version = ["py311"]
[tool.isort]
line_length = 120
indent = " "
multi_line_output = 3
combine_as_imports = true
include_trailing_comma = true
known_tests = "tests"
known_first_party = "ngohub"
default_section = "THIRDPARTY"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER,TESTS"
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
markers = [
"investigation_needed: mark test as needing investigation (deselect with '-m \"not investigation_needed\"')",
]