-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 923 Bytes
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 923 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
44
45
46
[project]
name = "tbsoc"
version = "3.1.1"
description = "A computational method to estimate spin-orbital interaction strength in solid state systems"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Q. Gu", email = "guqq@ustc.edu.cn" }
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"pyyaml",
"jax>=0.4.0",
"jaxlib>=0.4.0",
"fastapi>=0.124.4",
"uvicorn>=0.38.0",
"python-multipart>=0.0.20",
"pywebview>=6.1",
"httpx>=0.28.1",
"plotly>=6.5.0",
]
[project.scripts]
tbsoc = "tbsoc.__main__:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["tbsoc*"]
[dependency-groups]
dev = [
"pytest>=7.2.0",
"pytest-cov>=4.0.0",
"pyinstaller>=6.0",
]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
python_files = "test_*.py"