-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (62 loc) · 1.7 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=61", "wheel", "versioneer[toml]>=0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "pyevtk"
dynamic = ["version"]
description = "Export data as binary VTK files"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Paulo Herrera", email = "pauloa.herrera@gmail.com"},
]
maintainers = [
{name = "Adamos Kyriakou", email = "somada141@gmail.com"},
{name = "Xylar Asay-Davis", email = "xylarstorm@gmail.com"},
{name = "René Fritze"},
]
requires-python = ">=3.7"
dependencies = ["numpy>=1.8.0"]
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Homepage = "https://github.com/pyscience-projects/pyevtk"
[project.optional-dependencies]
dev = [
"build",
"pytest>=3.1",
"pytest-cov",
"codecov",
"twine",
"check-manifest",
"readme_renderer[md]",
"black>=26.0,<27.0",
"pre-commit",
]
[tool.setuptools.packages.find]
include = ["pyevtk*", "evtk*"]
[tool.setuptools.package-data]
pyevtk = ["LICENSE.txt", "examples/*.py"]
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "pyevtk/_version.py"
versionfile_build = "pyevtk/_version.py"
tag_prefix = "v"
parentdir_prefix = ""
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["tests/*.py"]
python_classes = ["Test"]
addopts = "--cov pyevtk"
[tool.black]
line-length = 88
required-version = "26"