-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
65 lines (54 loc) · 1.39 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
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "qcparse"
version = "0.6.4"
description = "A package for parsing Quantum Chemistry program file outputs into structured qcio data objects."
authors = ["Colton Hicks <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/coltonbh/qcparse"
homepage = "https://github.com/coltonbh/qcparse"
[tool.poetry.dependencies]
python = "^3.8"
pydantic = ">=2.0.0"
qcio = "^0.11.8"
tomli-w = "^1.0.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.1.1"
isort = "^5.12.0"
pytest = "^7.2.2"
pre-commit = "^3.2.0"
pytest-cov = "^4.0.0"
black = ">=24.0.0"
ruff = "^0.0.275"
types-toml = "^0.10.8.20240310"
[tool.poetry.scripts]
qcparse = "qcparse.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests/"
[tool.black]
line-length = 88
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
line_length = 88
multi_line_output = 3
use_parentheses = true
[tool.coverage.run]
branch = true
omit = ["*/tests/*", "*/migrations/*", "*site-packages*", "*__init__.py"]
[tool.mypy]
plugins = "pydantic.mypy"
ignore_missing_imports = true
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_required_dynamic_aliases = true
warn_untyped_fields = true
[tool.typos]
# Exclude specific files or directories
files.extend-exclude = [
"tests/data/**", # Single file
]