-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 1.27 KB
/
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
36
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "carillon"
dynamic = ["version"]
description = "A python generator for elements of a permutation group."
readme = {file = "README.rst", content-type = "text/x-rst"}
authors = [
{ name="Marc Culler", email="[email protected]" },
{ name="Nathan M. Dunfield", email="[email protected]" },
{ name="Matthias Görner", email="[email protected]" },
]
maintainers = [
{ name="Marc Culler", email="[email protected]" },
{ name="Nathan M. Dunfield", email="[email protected]" },
{ name="Matthias Görner", email="[email protected]" },
]
requires-python = ">=3.10"
keywords = ["permutations", "generator", "ring changes"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Documentation"
]
[project.urls]
"Homepage" = "https://github.com/3-manifolds/carillon"
"Bug Tracker" = "https://github.com/3-manifolds/carillon/issues"
[tool.setuptools.dynamic]
version = {attr = "permutations.__version__"}