-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (56 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
66 lines (56 loc) · 1.35 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
[project]
name = "molify"
dynamic = ["version"]
description = "Molecular Structure Interface with RDKit, ASE, Packmol and NetworkX"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{ name = "Fabian Zills", email = "fzills@icp.uni-stuttgart.de" },
]
dependencies = [
"ase>=3.25.0",
"matplotlib>=3.10.1",
"networkx>=3.4.2",
"packmol>=21.1.2",
"rdkit>=2024",
]
[dependency-groups]
dev = [
"pytest-cov>=6.1.1",
"pytest>=8.3.5",
"ruff>=0.11.8",
"ipykernel>=6.29.5",
"networkx>=3.4.2",
]
docs = [
"furo>=2024.8.6",
"nbsphinx>=0.9.7",
"sphinx>=8.1.3",
"sphinx-copybutton>=0.5.2",
"sphinxcontrib-mermaid>=1.0.0",
]
[project.optional-dependencies]
vesin = [
"vesin>=0.3.7",
]
[project.urls]
Repository = "https://github.com/zincware/molify"
Releases = "https://github.com/zincware/molify/releases"
Discord = "https://discord.gg/7ncfwhsnm4"
Documentation = "https://molify.readthedocs.io/"
[tool.ruff.lint]
select = ["E", "F", "N", "C", "I"]
extend-ignore = [
"D213", "D203", "N802", "N801"
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/molify/_version.py"
[tool.codespell]
ignore-words-list = "basf"
skip = "*.svg,paper/bibliography.bib,*.ipynb"