forked from mesonbuild/meson-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
61 lines (56 loc) · 1.38 KB
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]
build-backend = 'mesonpy'
backend-path = ['.']
requires = [
'meson>=0.63.3',
'ninja',
'pyproject-metadata>=0.5.0',
'tomli>=1.0.0',
'typing-extensions>=3.7.4; python_version<"3.8"',
]
[project]
name = 'meson-python'
description = 'Meson Python build backend (PEP 517)'
readme = 'README.md'
requires-python = '>=3.7'
license = { file = 'LICENSE' }
keywords = ['meson', 'build', 'backend', 'pep517', 'package']
authors = [
]
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python',
]
dependencies = [
'colorama; os_name == "nt"',
'meson>=0.63.3',
'ninja',
'pyproject-metadata>=0.5.0', # not a hard dependency, only needed for projects that use PEP 621 metadata
'tomli>=1.0.0',
'typing-extensions>=3.7.4; python_version<"3.8"',
]
dynamic = [
'version',
]
[project.optional-dependencies]
test = [
'pytest',
'pytest-cov',
'pytest-mock',
'GitPython',
'auditwheel',
'Cython',
'pyproject-metadata>=0.6.1',
'importlib_metadata; python_version<"3.8"'
]
docs = [
'furo>=2021.08.31',
'sphinx~=4.0',
'sphinx-autodoc-typehints>=1.10',
]
[project.urls]
homepage = 'https://github.com/FFY00/mesonpy'
repository = 'https://github.com/FFY00/mesonpy'
documentation = 'https://meson-python.readthedocs.io/'
changelog = 'https://meson-python.readthedocs.io/en/latest/changelog.html'