-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (53 loc) · 2.31 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=74.1", 'setuptools_scm[toml]>=6.0']
build-backend = "setuptools.build_meta"
[project]
name = "python-gmp"
dynamic = ["version"]
description = "Safe bindings to the GNU GMP library"
keywords = ['gmp', 'multiple-precision', 'arbitrary-precision', 'bignum']
license = {text = "MIT"}
authors = [{name = "Sergey B Kirpichev", email = "[email protected]"}]
maintainers = [{name = "Sergey B Kirpichev", email = "[email protected]"}]
classifiers = ['Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Python :: 3',
'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 :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules']
requires-python = ">= 3.9"
[project.readme]
file = 'README.rst'
content-type = 'text/x-rst'
[project.urls]
Homepage = 'https://github.com/diofant/python-gmp'
'Source Code' = 'https://github.com/diofant/python-gmp'
'Bug Tracker' = 'https://github.com/diofant/python-gmp/issues'
Documentation = 'https://python-gmp.readthedocs.io/'
[tool.setuptools]
ext-modules = [{name = "gmp", sources = ["main.c"], libraries = ["gmp"]}]
[tool.setuptools.dynamic]
version = {attr = 'setuptools_scm.get_version'}
[tool.setuptools.package-data]
"*" = ["*.h"]
[project.optional-dependencies]
tests = ["pytest", "hypothesis",
"gmpy2; platform_python_implementation!='PyPy'"]
develop = ["python-gmp[tests]", "ruff"]
docs = ['sphinx']
[tool.pytest.ini_options]
addopts = "--durations=7"
norecursedirs = ['build', '.eggs', '.git']
xfail_strict = true