-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.2 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
[build-system]
requires = ["setuptools", "Cython>=3.0", "wheel", "numpy>=2.1.2"]
build-backend = "setuptools.build_meta"
[project]
name = "cytriangle"
version = "2.0.0"
description = "Object-oriented Cython wrapper of Shewchuk's Triangle Library"
authors = [{name = "Maryanne Wachter", email = "mclare@utsv.net"}]
maintainers = [
{name = "Maryanne Wachter", email = "mclare@utsv.net"},
{name = "Connor Ferster", email = "connorferster@gmail.com"}
]
license = {text = "LGPL 3.0"}
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"
]
requires-python = ">=3.10"
dependencies = ["numpy>=2.1.2"]
[project.optional-dependencies]
dev = [
"pytest>=7.4.2",
"black>=23.9.1"
]
[tool.cython-lint]
max-line-length = 88
ignore = ['E503', 'E504']