-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (62 loc) · 1.87 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py-jaml"
description = "Python library for working with JAML configuration files"
version = "0.0.0"
authors = [
{ name = "Hadar Sharon", email = "hadar.sharon94@gmail.com" },
]
requires-python = ">=3.7"
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["python", "jaml", "configuration"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: File Formats",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
[project.urls]
Documentation = "https://github.com/hadarsharon/pyjaml/wiki"
Repository = "https://github.com/hadarsharon/pyjaml"
Changelog = "https://github.com/hadarsharon/pyjaml/releases"
[tool.setuptools.packages]
find = { }
[tool.ruff]
line-length = 120
fix = true
[tool.ruff.lint]
exclude = [
"*.md",
".git",
".idea",
".pytest_cache",
".ruff_cache",
".venv",
"CODEOWNERS",
"venv"
]
[tool.ruff.format]
quote-style = "double"
skip-magic-trailing-comma = false
preview = true