We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 36ac5eb + 74d39fa commit 9cb93edCopy full SHA for 9cb93ed
2 files changed
pynfe/__init__.py
@@ -1,5 +1,5 @@
1
def get_version():
2
- return "0.5.2"
+ return "0.5.3"
3
4
5
__version__ = get_version()
setup.py
@@ -1,12 +1,15 @@
#!/usr/bin/env python
import setuptools
+from pynfe import __version__
+
6
7
with open("README.md", "r", encoding="utf-8") as fh:
8
long_description = fh.read()
9
10
setuptools.setup(
11
name="PyNFe",
- version="0.5.2",
12
+ version=__version__,
13
author="TadaSoftware",
14
author_email="tadasoftware@gmail.com",
15
description="Interface library with the Brazilian Electronic Invoice web services",
0 commit comments