-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (47 loc) · 1.36 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
[tool.poetry]
name = "cytriangle"
version = "2.0.0"
description = "Object-oriented Cython wrapper of Shewchuk's Triangle Library"
authors = ["Maryanne Wachter <[email protected]>"]
maintainers = [
"Maryanne Wachter <[email protected]>",
"Connor Ferster <[email protected]>",
]
license = "LGPL 3.0"
homepage = "https://github.com/m-clare/cytriangle"
repository = "https://github.com/m-clare/cytriangle"
readme = "README.md"
keywords = [
"finite-element-analysis",
"triangular-meshing",
"mesh",
"FEA",
"triangle",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
include = ["*.pyx", "*.pxd", "*.c", "src/c/*"]
[tool.cython-lint]
max-line-length = 88
ignore = ['E503', 'E504']
[tool.poetry.build]
script = "build_ext.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = ">=3.10"
numpy = ">=2.1.2"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.2"
black = ">=23.9.1"
[build-system]
requires = ["poetry-core>=1.0.0", "Cython>=3.0", "setuptools", "numpy"]
build-backend = "poetry.core.masonry.api"