forked from m-clare/cytriangle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.3 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
[tool.poetry]
name = "cytriangle"
version = "1.0.1"
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.build]
script = "build_ext.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = ">=3.9"
numpy = "^1.25.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"