-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.43 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "wulfric"
license = { text = "GPL-3.0 license" }
dynamic = ["version"]
description = "Crystal, Lattice, Atoms, K-path."
dependencies = ["numpy~=1.26", "scipy", "termcolor"]
authors = [{ name = "Andrey Rybakov", email = "[email protected]" }]
requires-python = ">=3.9"
readme = "README.rst"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
"Operating System :: OS Independent",
]
[project.scripts]
wulfric = "wulfric.__main__:main"
[project.urls]
Homepage = "https://wulfric.org"
Documentation = "https://wulfric.org"
Repository = "https://github.com/adrybakov/wulfric.git"
Issues = "https://github.com/adrybakov/wulfric/issues"
Changelog = "https://wulfric.org/en/main/release-notes/index.html"
[project.optional-dependencies]
visual = ["plotly", "matplotlib"]
[tool.setuptools.dynamic]
version = { attr = "wulfric.__version__" }