-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpyproject.toml
52 lines (45 loc) · 1 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
[build-system]
requires = [
'Cython >=3.0.2',
'setuptools >=61',
]
build-backend = 'setuptools.build_meta'
[project]
name = 'triangle'
dynamic = ['version']
authors = [
{ name = 'Dzhelil Rufat', email = '[email protected]' },
]
description = 'Python binding to the triangle library'
readme = 'README.rst'
license = { text = 'LGPL-3.0' }
requires-python = '>=3.7'
dependencies = [
'numpy',
]
[project.optional-dependencies]
test = [
'pytest',
]
[project.urls]
Homepage = 'https://rufat.be/triangle'
Repository = 'https://github.com/drufat/triangle'
[tool.setuptools]
include-package-data = false
packages = ['triangle']
[tool.setuptools.dynamic]
version = { attr = 'triangle.version.__version__' }
[tool.setuptools.package-data]
triangle = [
'data/*.node',
'data/*.ele',
'data/*.poly',
'data/*.area',
'data/*.edge',
'data/*.neigh',
]
[tool.cibuildwheel]
skip = ['pp*', '*musllinux*']
test-skip = ['*-manylinux_i686']
test-requires = 'pytest'
test-command = 'pytest {project}/tests'