We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77363e4 commit d31684cCopy full SHA for d31684c
InvoiceGenerator/__init__.py
@@ -0,0 +1,4 @@
1
+VERSION = (0, 2, 7)
2
+
3
+__version__ = VERSION
4
+__versionstr__ = '.'.join(map(str, VERSION))
setup.py
@@ -2,13 +2,14 @@
import os
from setuptools import setup, find_packages
5
+import InvoiceGenerator
6
7
def read(fname):
8
return open(os.path.join(os.path.dirname(__file__), fname)).read()
9
10
setup(
11
name = "InvoiceGenerator",
- version = "0.2.6",
12
+ version = InvoiceGenerator.__versionstr__,
13
author = "Adam Strauch",
14
author_email = "cx@initd.cz",
15
description = ("Library to generate PDF invoice."),
0 commit comments