diff --git a/pyproject.toml b/pyproject.toml index fbd864c9..e320af7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "buildrunner" description = "Docker-based build tool" readme = "README.rst" -requires-python = ">=3.6" +requires-python = ">=3.9" license = {text = "MIT"} authors = [ {name = "Adobe", email = "noreply@adobe.com"} @@ -18,6 +18,7 @@ dynamic = ["version", "dependencies", "optional-dependencies"] [tool.setuptools.dynamic] dependencies = {file = ["requirements.txt"]} optional-dependencies = {test = { file = ["test_requirements.txt"] }} +version = {attr = "buildrunner.version.__version__"} [project.scripts] buildrunner = "buildrunner.cli:main"