-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.27 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
[build-system]
requires = ["setuptools>=77.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "cons"
dynamic = ["version"]
description = "An implementation of Lisp/Scheme-like cons in Python."
readme = "README.md"
license-files = ["LICENSE.txt"]
authors = [
{ name = "Brandon T. Willard", email = "brandonwillard+cons@gmail.com" },
]
requires-python = ">=3.9"
dependencies = ["logical-unification>=0.4.0"]
classifiers = [
"Development Status :: 3 - Alpha",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
]
[project.urls]
Homepage = "https://github.com/pythological/python-cons"
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools.packages.find]
include = ["cons*"]
exclude = ["tests*"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "dirty-tag"