-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (92 loc) · 2.66 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (92 loc) · 2.66 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
98
99
100
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vasppy"
version = "1.0.0"
description = "Python utilities for working with VASP inputs and outputs"
readme = "README.md"
authors = [
{name = "Benjamin J. Morgan", email = "bjm42@bath.ac.uk"}
]
license = {text = "MIT"}
keywords = ["vasp"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.11"
dependencies = [
"monty",
"numpy",
"pandas",
"pymatgen>=2023.6.28",
"PyYAML",
"scipy>=1.4.1",
"tqdm",
"lxml",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"mypy>=1.0",
"types-PyYAML",
"scipy-stubs",
"pylint>=2.15",
"coverage[toml]>=7.0",
]
docs = [
"sphinx>=6.0",
"sphinx-rtd-theme",
"nbsphinx",
]
[project.urls]
Homepage = "https://github.com/bjmorgan/vasppy"
Documentation = "https://vasppy.readthedocs.io"
Repository = "https://github.com/bjmorgan/vasppy"
"Bug Tracker" = "https://github.com/bjmorgan/vasppy/issues"
[project.scripts]
check_species = "vasppy.scripts.check_species:main"
checkforce = "vasppy.scripts.checkforce:main"
convergence_testing = "vasppy.scripts.convergence_testing:main"
murnfit = "vasppy.scripts.murnfit:main"
vasp_summary = "vasppy.scripts.vasp_summary:main"
poscar_to_cif = "vasppy.scripts.poscar_to_cif:main"
potcar_spec = "vasppy.scripts.potcar_spec:main"
effective_mass = "vasppy.scripts.effective_mass:main"
fat_bands = "vasppy.scripts.fat_bands:main"
poscar_to_xtl = "vasppy.scripts.poscar_to_xtl:main"
proc_poscar = "vasppy.scripts.proc_poscar:main"
rotate_poscar = "vasppy.scripts.rotate_poscar:main"
spacegroup = "vasppy.scripts.spacegroup:main"
vasp_grid = "vasppy.scripts.vasp_grid:main"
r2r2_expansion = "vasppy.scripts.r2r2_expansion:main"
[tool.setuptools]
packages = ["vasppy", "vasppy.scripts", "vasppy.data"]
[tool.setuptools.package-data]
vasppy = ["data/*.yaml"]
[tool.coverage.run]
source = ["vasppy"]
omit = [
"*/python?.?/*",
"*/lib-python/?.?/*.py",
"*/lib_pypy/_*.py",
"*/site-packages/ordereddict.py",
"*/site-packages/nose/*",
"*/unittest2/*",
"docs",
]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false