-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (32 loc) · 991 Bytes
/
pyproject.toml
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
[project]
name = "logic1"
dynamic = ["version"] # See https://setuptools-scm.readthedocs.io/en/v8.1.0/usage/
description = "Interpreted first-order logic in Python"
authors = [
{name = "Nicolas Faroß", email = "[email protected]"},
{name = "Thomas Sturm", email = "[email protected]"}
]
maintainers = [
{name = "Nicolas Faroß", email = "[email protected]"},
{name = "Thomas Sturm", email = "[email protected]"}
]
readme = "README.md"
dependencies = [
"more-itertools",
"pyeda",
]
requires-python = ">=3.11,<3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 3.11",
"Typing :: Typed"
]
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["logic1*"]
[tool.setuptools_scm]