generated from ovito-org/PythonFileReaderTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (33 loc) · 1.01 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyironFileReader"
version = "2024.1"
description = "OVITO Python file reader for the h5 data containers written by pyiron."
keywords = ["ovito", "ovito-extension"]
authors = [{name = "Daniel Utt", email = "[email protected]"}]
maintainers = [{name = "Daniel Utt", email = "[email protected]"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"ovito >= 3.9.1",
"h5py"
]
classifiers = [
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
]
[project.urls]
repository = "https://github.com/ovito-org/pyironFileReader"
[project.entry-points.'OVITO.FileReader']
"pyiron File Reader" = "pyironFileReader:PyironFileReader"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore:module 'sre_parse' is deprecated:DeprecationWarning",
"ignore:module 'sre_constants' is deprecated:DeprecationWarning",
]