-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (35 loc) · 953 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wannier90io"
description = "A Python library for Wannier90 I/O"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ "name" = "Jamal I. Mustafa" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"pydantic",
]
dynamic=['version']
[project.urls]
Documentation = "https://github.com/wannier-developers/wannier90io-python#readme"
Issues = "https://github.com/wannier-developers/wannier90io-python/issues"
Source = "https://github.com/wannier-developers/wannier90io-python"
[tool.hatch.build]
only-packages = true
[tool.hatch.version]
path = "src/wannier90io/__about__.py"
[project.scripts]
w90io = "wannier90io.__main__:main"
[tool.autopep8]
select = ["E231"]
[tool.pytest.ini_options]
addopts = "--cov=wannier90io --codeblocks"