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

This commit is contained in:
Lance Edgar 2024-06-11 18:29:29 -05:00
parent e87a14b828
commit b59e7b4e88
6 changed files with 52 additions and 68 deletions

View file

@ -1,3 +1,9 @@
# -*- coding: utf-8; -*-
__version__ = '0.1.4'
try:
from importlib.metadata import version
except ImportError:
from importlib_metadata import version
__version__ = version('rattail-quickbooks')