-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 925 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 925 Bytes
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
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "gmsh-scripts"
version = "0.4.8"
dependencies = [
"gmsh",
"numpy",
"pyyaml",
]
requires-python = ">=3.6"
authors = [
{name = "Roman Pashkovsky", email = "romapasky@gmail.com"},
{name = "Vladimir Lefèvre"},
]
maintainers = [
{name = "Roman Pashkovsky", email = "romapasky@gmail.com"},
{name = "Vladimir Lefèvre"},
]
description = "Scripts for GMSH mesh generator"
readme = "README.md"
license = "GPL-2.0-or-later"
license-files = ["LICENSE.*"]
keywords = ["mesh", "gmsh"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
[project.optional-dependencies]
viz = ["pyvis"]
[project.urls]
Homepage = "https://github.com/romanzes637/gmsh_scripts"
Documentation = "https://gmsh-scripts.readthedocs.io/en/latest/"
[tool.pytest.ini_options]
pythonpath = ["./src"]