File size: 1,014 Bytes
568c6e4 |
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 |
[project]
name = "molecularnodes"
version = "4.2.10"
description = "Toolbox for molecular animations with Blender and Geometry Nodes."
readme = "README.md"
dependencies = ["databpy", "MDAnalysis>=2.7.0", "biotite~=0.40", "mrcfile", "starfile"]
maintainers = [
{name = "Brady Johnston", email = "[email protected]"}
]
[project.urls]
Homepage = "https://bradyajohnston.github.io/MolecularNodes"
Repository = "https://github.com/bradyajohnston/MolecularNodes"
Documentation = "https://bradyajohnston.github.io/MolecularNodes"
[project.optional-dependencies]
bpy = ["bpy>=4.2"]
dev = ["pytest", "pytest-cov", "syrupy", "scipy", "fake-bpy-module"]
test = ["pytest", "pytest-cov", "syrupy", "scipy"]
docs = ["quartodoc", "tomlkit", "nodepad"]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0"]
[tool.setuptools]
include-package-data = true
packages = ["molecularnodes"]
[tool.setuptools.package-data]
molecularnodes = ["assets/*", "assets/template/*", "**/*.py"]
|