-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 1.19 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "tnview"
version = "1.2.0"
description = "Terminal diagnostics and replay for tensor-network simulation runs."
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "TNView contributors" }]
license = "MIT"
license-files = ["LICENSE"]
dependencies = []
keywords = ["tensor-networks", "dmrg", "tebd", "terminal", "telemetry", "quimb", "tenpy"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: System :: Logging",
]
[project.optional-dependencies]
quimb = ["autograd>=1.6", "networkx>=3.0", "quimb>=1.0"]
tenpy = ["physics-tenpy>=1.0"]
dev = ["build>=1.2", "twine>=5.0"]
[project.scripts]
tnview = "tnview.cli:main"
[project.urls]
Homepage = "https://github.com/stannum13/tnview"
Repository = "https://github.com/stannum13/tnview"
Issues = "https://github.com/stannum13/tnview/issues"
[tool.setuptools.packages.find]
include = ["tnview*"]