forked from mesonbuild/meson-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (49 loc) · 1.13 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
[build-system]
build-backend = 'mesonpy'
backend-path = ['.']
requires = [
'meson>=0.60.0',
'ninja',
'tomli>=1.0.0',
'typing-extensions>=3.7.4; python_version<"3.8"',
]
[project]
name = 'meson-python'
version = '0.2.1'
description = 'Meson Python build backend (PEP 517)'
readme = 'README.md'
requires-python = '>=3.7'
license = { file = 'LICENSE' }
keywords = ['meson', 'build', 'backend', 'pep517', 'package']
authors = [
{ name = 'Filipe Laíns', email = 'lains@riseup.net' },
]
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python',
]
dependencies = [
'meson>=0.60.0',
'ninja',
'tomli>=1.0.0',
'typing-extensions>=3.7.4; python_version<"3.8"',
]
[project.optional-dependencies]
test = [
'pytest',
'pytest-cov',
'pytest-mock',
'GitPython',
'auditwheel',
'pep621 >= 0.4.0',
]
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://mesonpy.readthedocs.io'
changelog = 'https://mesonpy.readthedocs.io/en/latest/changelog.html'