-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
83 lines (77 loc) · 1.91 KB
/
pyproject.toml
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
[build-system]
requires = ["ase", "numpy", "scipy", "setuptools", "spglib", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "atomistics"
description = "Interfaces for atomistic simulation codes and workflows"
authors = [
{ name = "Jan Janssen", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["pyiron"]
requires-python = ">=3.9, <3.13"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"ase==3.23.0",
"numpy==1.26.4",
"scipy==1.14.1",
"spglib==2.5.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/pyiron/atomistics"
Documentation = "https://atomistics.readthedocs.io"
Repository = "https://github.com/pyiron/atomistics"
[project.optional-dependencies]
phonopy = [
"phonopy==2.26.6",
"seekpath==2.1.0",
"structuretoolkit==0.0.28",
]
gpaw = [
"gpaw==24.6.0",
]
lammps = [
"pylammpsmpi==0.2.25",
"jinja2==3.1.4",
"pandas==2.2.3",
]
lammps_phonons = [
"pylammpsmpi==0.2.25",
"jinja2==3.1.4",
"pandas==2.2.3",
"dynaphopy==1.17.16",
]
experimental = [
"lxml==5.3.0",
"mendeleev==0.19.0",
"pandas==2.2.3",
"requests==2.32.3",
]
qe = [
"pwtools==1.2.3"
]
tqdm = [
"tqdm==4.67.0"
]
[tool.setuptools.packages.find]
include = ["atomistics*"]
[tool.setuptools.dynamic]
version = {attr = "atomistics.__version__"}
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "atomistics/_version.py"
parentdir_prefix = "atomistics"
tag_prefix = "atomistics-"