-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (44 loc) · 1.33 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "radicalpy"
description = "RadicalPy: a toolbox for radical pair spin dynamics"
readme = "README.md"
dynamic = ["dependencies", "version"]
authors = [
{name = "Lewis M. Antill", email = "[email protected]" },
{name = "Emil Vatai", email = "[email protected]"}
]
maintainers = [
{name = "Emil Vatai", email = "[email protected]"},
{name = "Lewis M. Antill", email = "[email protected]" }
]
keywords = ["simulation", "spin-dynamics", "radical pairs"]
license = {text = "MIT"}
[project.urls]
Homepage = "https://github.com/Spin-Chemistry-Labs/radicalpy"
Documentation = "https://radicalpy.readthedocs.io/en/latest/"
Source = "https://github.com/Spin-Chemistry-Labs/radicalpy"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.package-data]
"*" = ["*.json"]
["py.typed"]
[tool.pydocstyle]
convention = "google"
[tool.black]
line-length = 88
[tool.pylint]
max-line-length = 88
disable = ["C0103"]
load-plugins='pylint.extensions.docparams'
[tool.isort]
line_length = 88
profile = "black"
[tool.mypy]
plugins = ["numpy.typing.mypy_plugin"]
disallow_untyped_defs = true
disallow_untyped_calls = true