-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.23 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
[project]
name = "matkit"
version = "0.1.0"
description = "A modular Python toolkit for setting up and managing molecular simulations for RASPA, gRASPA, DFT, MD, and more."
authors = [
{ name="Thang Pham", email="tpham@anl.gov" }
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"ase>=3.22",
"click>=8.0",
"networkx>=2.6",
"numpy>=1.22",
]
[project.optional-dependencies]
rdkit = ["rdkit"]
mlip = ["mace-torch"]
plot = ["matplotlib>=3.5"]
all = ["rdkit", "mace-torch", "matplotlib>=3.5"]
dev = ["pytest>=7.0", "ruff>=0.4"]
[project.scripts]
matkit = "matkit.cli:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 80
[tool.ruff.lint]
select = ["E", "F"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"matkit.raspa2.files.template" = ["*"]
"matkit.graspa_sycl.files.template" = ["*"]
"matkit.graspa.files.template" = ["*"]
"matkit.graspa.files.template_mixture" = ["*"]
"matkit.graspa.files.template_co2_n2" = ["*"]
"matkit.graspa.files.template_mixture_isotherm" = ["*"]