-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (57 loc) · 1.81 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "hofmann"
version = "0.21.1"
description = "A modern Python reimagining of the XBS ball-and-stick crystal structure viewer"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Benjamin J. Morgan", email = "b.j.morgan@bath.ac.uk"},
]
keywords = ["crystallography", "molecular-visualisation", "ball-and-stick", "xbs", "matplotlib"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy>=1.24",
"matplotlib>=3.7",
"scipy>=1.10",
]
[project.urls]
Homepage = "https://github.com/bjmorgan/hofmann"
Documentation = "https://hofmann.readthedocs.io"
Repository = "https://github.com/bjmorgan/hofmann"
Issues = "https://github.com/bjmorgan/hofmann/issues"
[project.optional-dependencies]
animation = ["imageio>=2.30", "imageio-ffmpeg>=0.5"]
ase = ["ase>=3.22"]
pymatgen = ["pymatgen>=2024.1.1"]
dev = ["pytest>=7.0", "pytest-cov>=4.0"]
docs = [
"sphinx>=7.0",
"sphinx-rtd-theme>=2.0",
"sphinx-autodoc-typehints>=2.0",
"pymatgen>=2024.1.1",
"ase>=3.22",
"imageio>=2.30",
"polyhedral-analysis>=0.3",
]
all = ["hofmann[animation,ase,pymatgen,dev,docs]"]
[tool.setuptools.package-data]
hofmann = ["py.typed", "data/*.json"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]