-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (73 loc) · 2.05 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (73 loc) · 2.05 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "material-digital-workflow"
version = "0.1.0"
description = "Material Digital workflow dependencies"
readme = "README.md"
requires-python = ">=3.11,<3.13"
license = {text = "MIT"}
authors = [
{name = "Material Digital Team"}
]
keywords = ["materials", "simulation", "workflow", "pyiron"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
# Core scientific computing
"numpy==1.26.4",
"pandas==2.3.1",
# Materials science libraries
"ase==3.26.0",
"pymatgen==2025.6.14",
# Pyiron ecosystem
"pyiron-workflow==0.15.2",
"pyiron-lammps==0.4.6",
"pyiron-workflow-atomistics==0.0.2",
"pyiron-workflow-lammps==0.0.2",
"pyiron-snippets==0.2.0",
# Jupyter and notebook support
"ipykernel",
# Molecular dynamics simulation
"lammps",
# Job scheduling and queue management
"pysqa==0.3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
"black",
"flake8",
"mypy",
"pre-commit",
]
[project.urls]
Homepage = "https://github.com/MaterialDigital/workflow"
Repository = "https://github.com/MaterialDigital/workflow"
Documentation = "https://materialdigital.github.io/workflow"
[tool.setuptools.packages.find]
where = ["."]
include = ["workflow*"]
[tool.black]
line-length = 88
target-version = ['py311', 'py312']
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "--cov=workflow --cov-report=html --cov-report=term-missing"
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true