-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (76 loc) · 2.06 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (76 loc) · 2.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=80", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aimspy"
version = "0.2.1"
authors = [
{name = "DeepH team", email = "deeph-pack@outlook.com"},
]
description = "Pure-Python in-memory interface to FHI-aims via ctypes, for seamless integration with DeepX/DeepH."
readme = "README.md"
license = "GPL-3.0-or-later"
keywords = [
"FHI-aims", "DFT", "ab initio", "ctypes", "deeph", "deepx",
"materials science", "quantum chemistry",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
]
requires-python = ">=3.12,<3.15"
dependencies = [
"numpy>=1.24",
"h5py>=3.0",
"mpi4py>=3.0",
"click>=8.0",
]
[project.optional-dependencies]
viz = [
"matplotlib>=3.5",
"scipy>=1.10",
]
dev = [
"pytest>=7.0",
"ruff>=0.1.0",
"black>=23.0",
# Documentation (inherit from docs)
"sphinx",
"sphinx-book-theme",
"sphinx-autobuild",
"myst_nb",
"sphinx-design",
"docutils",
]
docs = [
"sphinx",
"sphinx-book-theme",
"sphinx-autobuild",
"myst_nb",
"sphinx-design",
"docutils",
]
[project.scripts]
aimspy = "aimspy.cli:main"
[project.urls]
Homepage = "https://github.com/kYangLi/aimspy"
Documentation = "https://github.com/kYangLi/aimspy#readme"
Repository = "https://github.com/kYangLi/aimspy.git"
Issues = "https://github.com/kYangLi/aimspy/issues"
Changelog = "https://github.com/kYangLi/aimspy/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["aimspy*"]
exclude = ["tests*", ".*", "*.egg-info", "build*"]
[tool.setuptools.package-data]
aimspy = ["_patches/*.diff"]
"aimspy._patches" = ["*.diff"]
[tool.pytest.ini_options]
testpaths = ["tests/unit"]