-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
44 lines (37 loc) · 948 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
43
44
[tool.poetry]
name = "tbsoc"
version = "2.0.0"
license = "LGPL-3.0"
description = "A computational method to estimate spin-orbital interaction strength in solid state systems"
authors = ["Q. Gu <[email protected]>"]
readme = "README.md"
repository = "https://github.com/qqgu/TBSOC"
[tool.poetry.dependencies]
python = ">=3.8"
pytest = ">=7.2.0"
numpy = "*"
scipy = "*"
matplotlib = "*"
pyyaml = "*"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.0"
numpy = "*"
scipy = "*"
matplotlib = "*"
pyyaml = "*"
[tool.poetry.scripts]
tbsoc = 'tbsoc.__main__:main'
[build-system]
requires = ["poetry-core", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = false
vcs = "git"
strict = true
format-jinja = """
{%- if distance == 0 -%}
{{ serialize_pep440(base) }}
{%- else -%}
{{serialize_pep440(bump_version(base, index=1), dev=timestamp)}}
{%- endif -%}
"""