From 1c76f381fdab3e83fecf9cd30c3805577cb1277c Mon Sep 17 00:00:00 2001 From: Alvin Noe Ladines Date: Wed, 18 Sep 2024 12:39:05 +0200 Subject: [PATCH] Change to dynamic versioning --- pyproject.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7758233..0e4751e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,10 @@ [build-system] -requires = ["setuptools"] +requires = ["setuptools>=61.0.0", "setuptools-scm>=8.0"] build-backend = "setuptools.build_meta" [project] name = "nomad-parser-plugins-atomistic" -version = "1.0.1" +dynamic = ["version"] description = "Collection of NOMAD parsers for atomistic codes." readme = "README.md" authors = [{ name = "The NOMAD Authors" }] @@ -84,6 +84,8 @@ include = [ "atomisticparsers*", ] # package names should match these glob patterns (["*"] by default) +[tool.setuptools_scm] + [project.entry-points.'nomad.plugin'] amberparser = "atomisticparsers:amber_parser_entry_point" asapparser = "atomisticparsers:asap_parser_entry_point"