File: pyproject.toml

package info (click to toggle)
python-symfc 1.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,972 kB
  • sloc: python: 10,795; makefile: 12
file content (45 lines) | stat: -rw-r--r-- 926 bytes parent folder | download
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "symfc"
dynamic = ["version"]
readme = {file = "README.md", content-type = "text/markdown"}
description = "This is the symfc module."
authors = [
    { name = "Atsuto Seko", email = "seko@cms.mtl.kyoto-u.ac.jp" }
]
maintainers = [
    {name = "Atsushi Togo", email = "atztogo@gmail.com"}
]
requires-python = ">=3.9"
dependencies = [
    "numpy",
    "scipy != 1.11.0, != 1.11.1, != 1.11.2",
    "spglib>=2.5",
]
license-files = ["LICENSE"]

[project.urls]
"Homepage" = "https://github.com/symfc/symfc"

[tool.setuptools.dynamic]
version = { attr = "symfc.version.__version__" }

[tool.ruff]
line-length = 88
select = [
    "F", # Flake8
    "B", # Black
    "I", # isort
    "E", # pycodestyle-errors
    "D", # pydocstyle
]
extend-ignore = [
    "D417",
    "D100",
]

[tool.ruff.lint.pydocstyle]
convention = "numpy"