feat: switch from setup.cfg to pyproject.toml + hatchling

This commit is contained in:
Lance Edgar 2024-07-01 11:03:11 -05:00
parent 95e89a6081
commit 3af49e2e62
5 changed files with 71 additions and 128 deletions

View file

@ -1,3 +1,6 @@
# -*- coding: utf-8; -*-
__version__ = '0.1.0'
from importlib.metadata import version
__version__ = version('rattail-tutorial')