-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.81 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
72
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dubidoc"
version = "0.1.4"
requires-python = ">=3.8"
description = "Python SDK for dubidoc.com.ua API"
readme = "README.md"
keywords = ["dubidoc", "Ukraine", "🇺🇦", "api", "dubidoc.com.ua"]
maintainers = [
{name = "Dmytro Litvinov", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules"
]
license = {text = "MIT License"}
dependencies = [
"requests"
]
[project.urls]
Homepage = "https://github.com/DmytroLitvinov/python-dubidoc"
Issues = "https://github.com/DmytroLitvinov/python-dubidoc/issues"
Changelog = "https://github.com/DmytroLitvinov/python-dubidoc/blob/main/CHANGELOG.md"
# Ruff
# ----
[tool.ruff]
src = ["dubidoc"]
line-length = 120
indent-width = 4
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
# Mypy
# ----
[tool.mypy]
files = "."
# Use strict defaults
strict = true
warn_unreachable = true
warn_no_return = true
[[tool.mypy.overrides]]
# Don't require test functions to include types
module = "tests.*"
allow_untyped_defs = true
disable_error_code = "attr-defined"