-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
34 lines (30 loc) · 992 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
34
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "WarrenCowleyParameters"
version = "2.0.0"
description = "OVITO Python modifier to compute Warren-Cowley parameters."
keywords = ["ovito", "python-modifier"]
authors = [{name = "Killian Sheriff", email = "ksheriff@mit.edu"}]
maintainers = [{name = "Killian Sheriff", email = "ksheriff@mit.edu"}]
license = {text = "MIT License"}
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"ovito >= 3.9.1",
]
[project.urls]
repository = "https://github.com/killiansheriff/WarrenCowleyParameters"
[project.entry-points.'OVITO.Modifier']
"Warren Cowley Parameters" = "WarrenCowleyParameters:WarrenCowleyParameters"
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore:module 'sre_parse' is deprecated:DeprecationWarning",
"ignore:module 'sre_constants' is deprecated:DeprecationWarning",
]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]