-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (56 loc) · 1.68 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "calphy"
version = "2.0.1"
description = "free energy calculation for python"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [
{ name = "Sarath Menon", email = "sarathmenon@mailbox.org" },
{ name = "Yury Lysogorskiy" },
{ name = "Ralf Drautz" },
]
keywords = ["calphy", "free energy", "molecular dynamics", "LAMMPS"]
classifiers = [
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"numpy>=2",
"pandas",
"matplotlib",
"pyarrow",
"pyyaml",
"mendeleev",
"tqdm",
"scipy",
"pydantic>=2.3.0",
"pyscal3",
]
[project.optional-dependencies]
test = ["pytest>=7"]
materials-project = ["mp_api"]
# execution_mode: library -- drives LAMMPS through pylammpsmpi instead of the
# lmp binary. Also needs the `lammps` python module (e.g. conda-forge lammps).
library = ["pylammpsmpi>0.4.1"]
[project.urls]
Homepage = "https://github.com/ICAMS/calphy"
Documentation = "https://calphy.org"
Repository = "https://github.com/ICAMS/calphy"
[project.scripts]
calphy = "calphy.kernel:main"
calphy_kernel = "calphy.queuekernel:main"
calphy_phase_diagram = "calphy.clitools:phase_diagram"
[tool.pytest.ini_options]
markers = [
"lammps: integration test that runs the real LAMMPS binary (skipped when no lmp resolves)",
"slow: slow integration test (the heavier end-to-end scenarios)",
]
[tool.setuptools.packages.find]
include = ["calphy", "calphy.*"]