-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
84 lines (74 loc) · 1.78 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[project]
name = 'pengwann'
dynamic = ['version']
description = 'Computation of chemical bonding descriptors from Wannier functions'
readme = 'README.md'
authors = [
{name = 'Patrick J. Taylor', email = '[email protected]'}
]
maintainers = [
{name = 'Patrick J. Taylor', email = '[email protected]'}
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics'
]
requires-python = '>=3.10'
dependencies = [
'numpy>=2',
'pymatgen>=2022.0.3',
'scipy',
'tqdm'
]
[project.optional-dependencies]
dev = [
'pyright',
'pytest',
'pytest-cov',
'pytest-datadir',
'pytest-random-order',
'pytest-regressions',
'ruff',
'scipy-stubs',
'types-tqdm'
]
docs = [
'myst_parser',
'numpydoc',
'pydata-sphinx-theme',
'sphinx',
'sphinxcontrib-bibtex'
]
[project.urls]
homepage = 'https://github.com/PatrickJTaylor/pengWann'
[tool.hatch.build]
include = ['pengwann']
[tool.hatch.version]
path = 'pengwann/version.py'
[tool.pyright]
include = ['pengwann']
[tool.coverage.run]
concurrency = ['multiprocessing']
parallel = true
sigterm = true
[tool.coverage.report]
omit = [
'pengwann/__init__.py',
'pengwann/version.py'
]
[tool.pytest.ini_options]
addopts = '--random-order --cov-report xml --cov=pengwann'
testpaths = ['tests']