-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
61 lines (53 loc) · 1.57 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
59
60
61
# This file is part of ModelHamiltonian.
#
# ModelHamiltonian is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# ModelHamiltonian is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with ModelHamiltonian. If not, see <http://www.gnu.org/licenses/>.
[build-system]
requires = ["setuptools>=65.0", "setuptools_scm[toml]>=7.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "moha"
authors = [
{ name="QC-Devs Community", email="qcdevs@gmail.com" },
]
description = "ModelHamiltonian generates 1- and 2-electron integrals corresponding to various model Hamiltonians."
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
requires-python = ">=3.6"
dependencies = [
"numpy>=1.16",
"scipy>=1.4",
"pytest",
]
dynamic =["version" ]
[project.urls]
Documentation = "https://modelh.qcdevs.org"
Issues = "https://github.com/theochem/ModelHamiltonian/issues"
Source = "https://github.com/theochem/ModelHamiltonian/"
[project.optional-dependencies]
gui = [
"rdkit",
"sv-ttk"
]
gpt = [
"toml",
"openai"
]
toml = [
"toml"
]
[tool.setuptools]
packages = ["moha"]
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["test"]