Here is the pyproject.toml:
name = "hello_world"version = "1.2.3"I want to change the version to datetime:
from datetime import datetimeversion = datetime.now().strftime("%Y.%m.%d")How to set it in the pyproject.toml?
Here is the pyproject.toml:
name = "hello_world"version = "1.2.3"I want to change the version to datetime:
from datetime import datetimeversion = datetime.now().strftime("%Y.%m.%d")How to set it in the pyproject.toml?