generated from ovito-org/PythonModifierTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (28 loc) · 869 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "RingFinder"
version = "2023.4"
description = "Finds shortest of bonds in the system"
keywords = ["ovito", "ovito-extension"]
authors = [{name = "Daniel Utt", email = "[email protected]"}]
maintainers = [{name = "Daniel Utt", email = "[email protected]"}]
license = {text = "GPLv3"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"ovito >= 3.9.1",
]
[project.urls]
repository = "https://github.com/ovito-org/RingFinder"
[project.entry-points.'OVITO.Modifier']
"Ring Finder" = "RingFinder:RingFinder"
[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",
]