-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
54 lines (47 loc) · 1.41 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rowan"
version = "1.3.2"
description = "Perform quaternion operations using NumPy arrays"
readme = "README.rst"
license = { file = "LICENSE.txt" }
requires-python = ">=3.8"
authors = [
{ name = "Vyas Ramasubramani", email = "[email protected]" },
]
classifiers = [
"Development Status :: 6 - Mature",
"License :: OSI Approved :: BSD License",
"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",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpy>=1.21",
]
[project.optional-dependencies]
mapping = [
"scipy>=1.7",
]
[project.urls]
Homepage = "https://github.com/glotzerlab/rowan"
[tool.setuptools.packages.find]
include = ["rowan*"]
namespaces = false
[tool.ruff.lint]
select = ["E", "W", "F", "C", "I", "D", "UP", "COM", "A", "B", "C4", "RET", "SLF", "PT", "S"]
ignore = [
"COM812", # Conflicts with ruff formatter
"B904", # We don't always want to raise from another exception
"PT011", # Checking exception messages is undesirable
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"]
"benchmarks/*.ipynb" = ["D103", "E501", "C400"]