-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 867 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "westpy"
authors = [
{name = "Marco Govoni", email = "mgovoni@unimore.it"},
]
description = "Python tools for WEST"
readme = "README.md"
requires-python = ">=3.6, <4"
license = "GPL-3.0-only"
dependencies = [
"numpy",
"scipy",
"matplotlib",
"pyyaml",
"datetime",
"requests",
"mendeleev",
"setuptools",
"urllib3",
"sphinx",
"sphinx_rtd_theme",
"py3Dmol",
"pyscf",
"ipython",
"pandas",
"six",
"ase",
"qiskit_nature",
"h5py",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "westpy.__version__"}
[project.urls]
Homepage = "https://west-code.org/"
Documentation = "https://west-code.org/doc/westpy/latest/"
Repository = "https://github.com/west-code-development/westpy"