forked from cp2k/cp2k-output-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.34 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
[tool.poetry]
name = "cp2k-output-tools"
version = "0.5.0"
description = "Python tools to handle CP2K output files"
authors = ["Tiziano Müller <tiziano.mueller@chem.uzh.ch>"]
repository = "https://github.com/cp2k/cp2k-output-tools"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Chemistry",
"Intended Audience :: Science/Research",
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.7"
regex = ">=2021.4,<2023.0"
"ruamel.yaml" = {version = ">=0.16.5,<0.18.0", optional = true}
numpy = "^1.19"
click = "^8.0.1"
rich = ">=10.7,<13.0"
Pint = ">=0.17,<0.19"
[tool.poetry.extras]
yaml = ["ruamel.yaml"]
[tool.poetry.dev-dependencies]
pytest = "^7.1"
codecov = "^2.0.15"
pytest-cov = "^3.0.0"
pytest-console-scripts = "^1.2.0"
[tool.poetry.scripts]
cp2kparse = 'cp2k_output_tools.cli:cp2kparse'
xyz_restart_cleaner = 'cp2k_output_tools.trajectories.xyz_cli:xyz_restart_cleaner'
cp2k_bs2csv = 'cp2k_output_tools.cli:cp2k_bs2csv'
cp2k_pdos = 'cp2k_output_tools.scripts.pdos:cp2k_pdos'
[tool.black]
line-length = 132
target_version = ['py38']
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry>=1"]
build-backend = "poetry.masonry.api"