forked from python-constraint/python-constraint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (57 loc) · 1.53 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
[project]
name = "compwa-python-constraint"
description = "Support for handling constraint-solving problems over finite domains"
readme = "README.md"
license = "BSD-2-Clause"
license-files = ["LICENSE"]
authors = [{ name = "Gustavo Niemeyer", email = "gustavo@niemeyer.net" }]
keywords = [
"CSP",
"constraint solving",
"problem solver",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://python-constraint.github.io/python-constraint"
Issues = "https://github.com/ComPWA/python-constraint/issues"
Repository = "https://github.com/ComPWA/python-constraint"
[project.optional-dependencies]
dev = [
"check-manifest",
"nose",
]
test = [
"coverage",
"nose",
]
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = [
"contrib",
"docs",
"tests*",
]
[tool.setuptools.dynamic]
version = { attr = "constraint.version.__version__" }
[tool.tombi.files]
exclude = ["**/uv.lock"]
[tool.tombi.format.rules]
indent-width = 4
line-width = 88
[tool.tombi.lint.rules]
key-empty = "off"