-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm[toml]", "Cython", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "excipy"
dynamic = ["version"]
dependencies = [
"pytraj",
"numpy",
"scipy",
"tqdm",
"cython",
]
requires-python = ">= 3.7"
authors = [
{name = "Edoardo Cignoni", email = "[email protected]"},
{name = "Elena Betti", email = "[email protected]"},
{name = "Chris John"},
{name = "Lorenzo Cupellini", email = "[email protected]"},
{name = "Benedetta Mennucci", email = "[email protected]"},
]
maintainers = [
{name = "Edoardo Cignoni"},
{name = "Elena Betti"},
{name = "Chris John"},
]
description = "Machine learning models for a fast estimation of excitonic Hamiltonians"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
keywords = ["Machine Learning", "Chlorophylls", "Excitonic", "Light-Harvesting"]
[project.urls]
Repository = "https://github.com/Molecolab-Pisa/excipy"
# [project.entry_points]
# excipy = "excipy.cli:main"
# excipy2exat = "excipy.cli:excipy2exat"
# excipy-scan = "excipy.cli:excipy_scan"
[project.scripts]
excipy = "excipy.cli:main"
excipy2exat = "excipy.cli:excipy2exat"
excipy-scan = "excipy.cli:excipy_scan"
[tool.setuptools_scm]
write_to = "excipy/_version.py"
[tool.setuptools]
packages = ["excipy", "excipy.clib", "excipy.models"]
[tool.setuptools.package-data]
excipy = [
"database/atom_names/*.json",
"database/parameters/*/*.json",
"database/rescalings/*/*.json",
"database/models/*/*/*.npz",
]