Attempt to fix poetry management

This commit is contained in:
2025-05-28 10:46:03 +01:00
parent 8cc399d036
commit 5f9762461a

View File

@@ -1,22 +1,28 @@
[project] [project]
name = "read_aconity_layers" name = "read_aconity_layers"
version = "0.4.2"
description = "A utility for fast reading of layer data from the aconity mini powder bed fusion machine"
requires-python = ">=3.11" requires-python = ">=3.11"
classifiers = [ classifiers = [
"Programming Language :: Rust", "Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
] ]
dynamic = ["version"] authors = [{ name = "Cian Hughes", email = "chughes000@gmail.com" }]
license = { text = "MIT" }
readme = "README.md"
[project.urls]
github = "https://github.com/Cian-H/read_aconity_layers"
[tool.poetry] [tool.poetry]
name = "read_aconity_layers" name = "read_aconity_layers"
version = "0.4.2" version = "0.4.2"
description = "A utility for fast reading of layer data from the aconity mini powder bed fusion machine" description = "A utility for fast reading of layer data from the aconity mini powder bed fusion machine"
urls = { github = "https://github.com/Cian-H/read_aconity_layers" }
authors = ["Cian Hughes <chughes000@gmail.com>"] authors = ["Cian Hughes <chughes000@gmail.com>"]
license = "MIT" license = "MIT"
readme = "README.md" readme = "README.md"
packages = [{ include = "read_aconity_layers" }] package-mode = false
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.11" python = "^3.11"