-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 1.03 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
[build-system]
requires = ["setuptools>=72.1"]
build-backend = "setuptools.build_meta"
[project]
name = "trotter"
version = "1.2.0"
authors = [
{ name="Richard Ambler", email="rambler@wya.top" },
]
description = "Pseudo-lists containing arrangements of item selection types that commonly arise in combinatorics, such as combinations, permutations and subsets."
readme = "README.md"
license = {text = "MIT License"}
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
]
keywords=[
"combinations",
"permutations",
"combinatorics",
"amalgams",
"compositions",
"subsets",
"compounds",
]
[project.urls]
"Homepage" = "https://github.com/ram6ler/python-trotter"
"Bug Tracker" = "https://github.com/ram6ler/python-trotter/issues"