-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
36 lines (33 loc) · 933 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
36
[build-system]
requires = [
"setuptools",
"Cython>=3.0",
"cysignals>=1.11.3",
]
# We need access to the autogen package at build time.
# Hence we declare a custom build backend.
build-backend = "_custom_build_meta" # just re-exports setuptools.build_meta definitions
backend-path = ["."]
[project]
name = "cypari2"
description = "A Python interface to the number theory library PARI/GP"
authors = [
{name = "Luca De Feo, Vincent Delecroix, Jeroen Demeyer, Vincent Klein"},
]
maintainers = [
{name = "SageMath developers", email = "[email protected]"},
]
dependencies = [
"cysignals>=1.11.3",
]
requires-python = ">=3.9"
readme = "README.rst"
license = {text = "GNU General Public License, version 2 or later"}
keywords = ["PARI/GP number theory"]
dynamic = [
"version",
]
[project.urls]
Homepage = "https://github.com/sagemath/cypari2"
[tool.setuptools.dynamic]
version = {file = "VERSION"}