forked from peteshadbolt/permanent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 757 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (25 loc) · 757 Bytes
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
[build-system]
requires = ["setuptools>=74.1", "wheel", "numpy >= 2.1"]
build-backend = "setuptools.build_meta"
[project]
name = "permanentbis"
version = "0.1.1"
authors = [
{name = "Pete Shadbolt", email = "hello@peteshadbolt.co.uk"},
{name = "Andrzej Kaczmarczyk", email = "droodev@gmail.com"}
]
maintainers = [
{name = "Andrzej Kaczmarczyk", email = "droodev@gmail.com"}
]
description = "Computing the permanent of a matrix."
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.10"
license = {file = "LICENSE"}
readme = "README.md"
dependencies = ["numpy >= 2.1"]
[project.urls]
Repository="https://github.com/droodev/permanentbis"