-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (51 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
54 lines (51 loc) · 1.46 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "edipack2triqs"
version = "1.0.0"
description = "Compatibility layer between EDIpack and TRIQS"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["edipack", "edipack2py", "triqs"]
authors = [
{name = "I. Krivenko", email = "iskrivenko@proton.me" },
{name = "L. Crippa", email = "crippa.lorenzo@gmail.com" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
dependencies = ["edipack2py>=6.0.0",
"numpy",
"mpi4py",
"networkx"]
[project.urls]
"Source" = "https://github.com/EDIpack/edipack2triqs/"
[project.optional-dependencies]
test = [
"pytest>=8.0.0",
"pytest-mpi>=0.5.0"
]
lint = [
"pytest>=8.0.0",
"flake8>=7.0.0"
]
docs = [
"Sphinx>=8.0.0,<9.0.0",
"sphinx-rtd-theme>=3.0.0",
"sphinxfortran-ng>=0.3.0",
"nbsphinx>=0.9.0",
"myst-parser>=1.0.0",
"matplotlib>=3.0.0",
"linkify-it-py>=2.0.0",
"enum_tools>=0.10.0"
]