-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (62 loc) · 1.85 KB
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>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "relattrs"
version = "2.0.0"
description = "Toolkit for working with nth order relational attributes in Python classes."
readme = {file = "README.rst", content-type = "text/x-rst"}
license = {text = "GPL-3.0-or-later"}
authors = [
{name = "Sergio Rodríguez", email = "srodriguez3441@gmail.com"},
]
maintainers = [
{name = "Sergio Rodríguez", email = "srodriguez3441@gmail.com"},
]
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
dev = [
"build",
"pre-commit",
"pytest",
"pytest-cov",
"ruff",
"tox",
"twine",
]
[project.urls]
Homepage = "https://github.com/nibblex/python-relattrs"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
relattrs = ["py.typed"]
[tool.pytest.ini_options]
python_files = ["tests.py", "test_*.py", "*_tests.py"]
pythonpath = ["."]
addopts = "--doctest-modules"
[tool.tox]
envlist = ["py38", "py39", "py310", "py311", "py312", "py313", "py314"]
[tool.tox.env_run_base]
deps = ["pytest", "pytest-cov"]
commands = [
["pytest", "-q", "--cov", "--cov-report=xml"]
]
[tool.ruff]
line-length = 88
indent-width = 4
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]