-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·39 lines (36 loc) · 986 Bytes
/
pyproject.toml
File metadata and controls
executable file
·39 lines (36 loc) · 986 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
[project]
name = "csslib"
version = "1.0.1"
authors = [
{ name="A.V. Krautsou" },
]
readme = "README.md"
description = "CSSlib is an open-source code for building configuration search space (CSS) of disordered crystals."
requires-python = ">=3.10, <3.14"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"jupyter >=1.0.0, <= 1.1.1",
"matplotlib >=3.10.7, <= 3.10.8",
"numpy >=1.26.4, <= 2.4.2",
"pandas >=2.3.2, < 3.0",
"plotly >=6.3.1, <= 6.5.2",
"pydantic >=2.12.5",
"pymatgen ==2025.6.14",
"pymatgen-analysis-defects ==2025.1.18",
"scipy >=1.15.3, <1.17.1",
"tqdm >=4.67.1, <= 4.67.3",
"networkx >=3.4.2, <= 3.6.1"
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
# [tool.setuptools]
# packages = []
# [project.optional-dependencies]
# dev = [
# "pytest",
# "mypy",
#]