-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (91 loc) · 2 KB
/
pyproject.toml
File metadata and controls
97 lines (91 loc) · 2 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=45", "setuptools-scm[toml]>=6.2", "wheel" ]
[project]
name = "spgrep"
description = "On-the-fly generator of space-group irreducible representations"
readme = "README.md"
license = { text = "BSD" }
authors = [
{ name = "Kohei Shinohara", email = "kshinohara0508@gmail.com" },
]
requires-python = ">=3.10.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
]
dynamic = [
"version",
]
dependencies = [
"hsnf>=0.3.16",
"numpy>=1.20.1",
"spglib>=2.7",
"typing-extensions",
]
optional-dependencies.dev = [
"ipykernel",
"ipython",
"matplotlib",
"nbqa",
"notebook",
"phonopy",
"prek",
"seaborn",
"snakeviz",
]
optional-dependencies.docs = [
"docutils",
"linkify-it-py",
"myst-parser",
"nbsphinx",
"spgrep[dev]",
"sphinx",
"sphinx-autobuild",
"sphinx-book-theme>=0.8",
"sphinxcontrib-bibtex>=2.6.2",
]
# Enable version inference
optional-dependencies.testing = [
"pytest",
"pytest-cov",
]
urls.homepage = "https://github.com/spglib/spgrep"
[tool.setuptools_scm]
[tool.ruff]
line-length = 99
lint.extend-select = [
"E", # pycodestyle-errors
"F", # pyflakes
"I", # isort
# "D", # pydocstyle
"UP", # pyupgrade
]
lint.extend-ignore = [
"D100",
"D101",
"D102",
"D103",
"D203", # Conflict with D211
"D205",
"D213", # Conflict with D212
"E501",
]
[tool.pytest.ini_options]
testpaths = [ "tests" ]
[tool.mypy]
exclude = [
'docs',
]
warn_no_return = false