-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 1.04 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
[build-system]
build-backend = "mesonpy"
requires = ["meson-python", "wheel"]
[project]
name = "sympleints"
version = "0.0.2"
description = "Molecular integrals over Gaussian basis functions using sympy."
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: EUROPEAN UNION PUBLIC LICENCE v. 1.2 (EUPL-1.2)"
]
maintainers = [{ name = "Johannes Steinmetzer", email="johannes.steinmetzer@uni-jena.de" }]
authors = [{ name = "Johannes Steinmetzer", email="johannes.steinmetzer@uni-jena.de" }]
requires-python = ">= 3.8"
dependencies = [
"black",
"colorama",
"fprettify",
"jinja2",
"matplotlib",
"networkx",
"numpy",
"pathos",
"psutil",
"sympy",
]
[project.optional-dependencies]
test = ["pyscf", "pytest", "pytest-cov"]
[project.urls]
Repository = "https://github.com/eljost/sympleints"
[project.scripts]
sympleints = "sympleints.main:run_cli"
sympleints-graph = "sympleints.graphs.main:run"
[tool.pyright]
exclude = ["tests/**"]
[tool.ruff]
ignore-init-module-imports = true