-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.48 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
[build-system]
requires = ["setuptools>=77.0.0", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "miniKanren"
dynamic = ['version']
requires-python = ">=3.9"
authors = [{ name = "Brandon T. Willard", email = "brandonwillard+kanren@gmail.com" }]
description = "Relational programming in Python"
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE.txt"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"cons >= 0.4.0",
"etuples >= 0.3.1",
"logical-unification >= 0.4.1",
"toolz",
]
[project.urls]
repository = "http://github.com/pythological/kanren"
[dependency-groups]
test = [
"pytest",
"sympy",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["kanren*"]
exclude = ["doc*", "examples*", "tests*"]
[tool.setuptools.package-data]
kanren = ["py.typed"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "dirty-tag"