-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
37 lines (35 loc) · 1.3 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
37
[build-system]
requires = ["meson-python", "cython>=0.28"]
build-backend = "mesonpy"
[project]
name = "cysignals"
version = "1.12.0"
description = "Interrupt and signal handling for Cython"
license = { file = "LICENSE" }
readme = { file = "README.rst", content-type = "text/x-rst" }
authors = [
{ name = "The Sage Developers", email = "[email protected]" },
]
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: C",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System",
"Topic :: Software Development :: Debuggers",
]
urls = { Homepage = "https://github.com/sagemath/cysignals" }
requires-python = ">=3.9"
[tool.pytest.ini_options]
addopts = "--doctest-modules --import-mode importlib"
norecursedirs = "builddir docs example"