-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
49 lines (42 loc) · 1.22 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "crystalatte"
dynamic = ["version"]
dependencies = [
"pycifrw",
"numpy",
]
requires-python = ">=3.8"
authors = [
{name = "Carlos Borca", email = "[email protected]"},
]
description = "Automated calculation of crystal lattice energies with the many-body expansion"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
]
[project.optional-dependencies]
tests = [
"pytest",
]
[project.scripts]
crystalatte = "crystalatte:cli"
psithonyzer = "psithonyzer:psz_process_args_and_run"
[project.urls]
"Homepage" = "https://github.com/carlosborca/CrystaLattE"
"Bug Tracker" = "https://github.com/carlosborca/CrystaLattE/issues"
[tool.setuptools.packages]
find = {}
[tool.coverage.run]
omit = ["*/tests/*"]
[tool.setuptools-git-versioning]
enabled = true
dev_template = "{tag}.{ccount}+git.{sha}"
dirty_template = "{tag}.{ccount}+git.{sha}.dirty"