-
-
Notifications
You must be signed in to change notification settings - Fork 553
/
Copy pathpyproject.toml.m4
56 lines (48 loc) · 1.3 KB
/
pyproject.toml.m4
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
46
47
48
49
50
51
52
53
54
55
56
include(`sage_spkg_versions_toml.m4')dnl' -*- conf-toml -*-
[build-system]
# Minimum requirements for the build system to execute.
requires = [
SPKG_INSTALL_REQUIRES_setuptools
SPKG_INSTALL_REQUIRES_wheel
SPKG_INSTALL_REQUIRES_sage_setup
SPKG_INSTALL_REQUIRES_sagemath_environment
SPKG_INSTALL_REQUIRES_sagemath_objects
SPKG_INSTALL_REQUIRES_cython
SPKG_INSTALL_REQUIRES_gmpy2
SPKG_INSTALL_REQUIRES_cysignals
SPKG_INSTALL_REQUIRES_pkgconfig
]
build-backend = "setuptools.build_meta"
[project]
name = "sagemath-categories"
description = "Sage: Open Source Mathematics Software: Sage categories and basic rings"
dependencies = [
SPKG_INSTALL_REQUIRES_sagemath_objects
]
dynamic = ["version"]
include(`pyproject_toml_metadata.m4')dnl'
[project.optional-dependencies]
test = [
SPKG_INSTALL_REQUIRES_sagemath_repl
]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = {file = ["VERSION.txt"]}
[external]
# External dependencies in the format proposed by https://peps.python.org/pep-0725
build-requires = [
"virtual:compiler/c",
"virtual:compiler/cpp",
"pkg:generic/pkg-config",
]
host-requires = [
"pkg:generic/gmp",
"pkg:generic/mpc",
"pkg:generic/mpfr",
]
dependencies = [
]