- fix version

This commit is contained in:
cclecle
2022-05-25 19:54:56 +02:00
parent 391797ae34
commit 5ef5c2a832
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ You should have received a copy of the license along with this
work. If not, see <https://creativecommons.org/licenses/by-nc-sa/4.0/>.
"""
from . import _version as ChaChaSimpleINI_Version
from ._version import __version__
from .core import ChaChaINI_KeyNotFoundException, \
ChaChaINI_SectionNotFoundException

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env python
from setuptools import setup,find_packages
from ChaChaSimpleINI import ChaChaSimpleINI_Version
from ChaChaSimpleINI import __version__ as ChaChaSimpleINI_Version
with open("./README.md", "r") as fh:
long_description = fh.read()