-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.13 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
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nd-prover"
version = "2.1.0"
description = "Natural deduction proof generator & checker"
authors = [{ name = "Daniyal Akif", email = "daniyalakif@gmail.com" }]
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.10"
keywords = [
"python",
"math",
"logic",
"proof checker",
"natural deduction",
"fitch",
"fitch proofs",
"modal logic"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Mathematics",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://ndprover.org"
Repository = "https://github.com/daniyal1249/nd-prover"
[project.scripts]
nd-prover = "nd_prover.cli:main"
[tool.setuptools]
packages = ["nd_prover"]