-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0.0", "setuptools_scm[toml]>=6.3.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "latviz"
description = "A tool for producing visualizations of Lattice QCD fields. Accepts fields as binary files, where the order is (t, x, y, z)."
readme = "README.md"
requires-python = ">=3.9"
version = "0.0.2"
license = {file = "LICENSE"}
authors = [{name = "Mathias Vege"}]
dependencies = [
"click>=8.0.3",
"loguru>=0.5.3",
"numpy>=1.21.4",
"pyvista>=0.32.1",
"tqdm>=4.62.3",
]
[project.optional-dependencies]
dev = [
"black>=22.3.0",
"flake8>=4.0.1",
"mypy>=0.961",
"pytest>=7.1.2",
"pre-commit>=2.19.0"
]
[tool.setuptools]
packages = ["latviz"]
[project.scripts]
latviz = "latviz.cli:latviz"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["test"]
[tool.black]
line-length = 79
target_version = ["py39"]
[tool.flake8]
max-line-length = 79
extend-ignore = "E203"
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true