-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (51 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
61 lines (51 loc) · 1.22 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hylight"
dynamic = ["version"]
description = "Hylight is post-processing package for luminescence related ab initio computations."
readme = "README.md"
license = "EUPL-1.2"
authors = [
{ name = "Théo Cavignac", email = "theo.cavignac+dev@gmail.com" },
{ name = "The PyDEF Team", email = "camille.latouch@cnrs-imn.fr" },
]
dependencies = [
"numpy >=1.16",
"scipy >=1.3",
]
keywords = [ "chemistry", "computational chemistry" ]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Operating System :: OS Independent",
]
[project.urls]
repository = "https://github.com/PyDEF/hylight"
documentation = "https://pydef.github.io/hylight"
[project.optional-dependencies]
dev = [
"furo",
"myst-parser",
"myst_nb",
"sphinx",
]
hdf5 = [
"h5py >= 3.7",
]
phonopy = [
"pyyaml",
]
plotting = [
"matplotlib >=3.0",
]
[project.scripts]
hylight-modes = "hylight.cli.modes:cmd"
hylight-pos = "hylight.cli.pos:cmd"
[tool.hatch.version]
path = "hylight/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/hylight",
]