-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (72 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (72 loc) · 1.96 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
73
74
75
76
77
78
79
[project]
name = "NuCS"
version = "14.0.0"
authors = [
{ name = "Yan Georget", email = "yan.georget@gmail.com" },
]
description = "A Numpy and Numba based Python library for solving Constraint Satisfaction Problems over finite domains"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"numba==0.66.0",
"numpy==2.4.6",
"rich==15.0.0"
]
[project.optional-dependencies]
dev = [
"addheader",
"build",
"mypy",
"ruff",
"sphinx",
"alabaster",
"twine"
]
test = [
"coverage",
"pytest"
]
[project.scripts]
fzn-nucs = "nucs.fzn.__main__:main"
[project.urls]
Homepage = "https://github.com/yangeorget/nucs"
Issues = "https://github.com/yangeorget/nucs/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = ["E741"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
[tool.setuptools.packages.find]
include = ["nucs*"]
[tool.setuptools.package-data]
"nucs.fzn" = ["share/**/*", "README.md"]
[tool.pytest]
testpaths = ["tests"]