We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4337ea2 commit 5523df9Copy full SHA for 5523df9
setup.py
@@ -2,13 +2,14 @@
2
use_setuptools()
3
from setuptools import setup, find_packages
4
import sys
5
+from messaging import VERSION
6
7
extra = {}
8
if sys.version_info >= (3,):
9
extra['use_2to3'] = True
10
11
setup(name="python-messaging",
- version='0.5.10',
12
+ version='%s.%s.%s' % VERSION,
13
description='SMS/MMS encoder/decoder',
14
license=open('COPYING').read(),
15
packages=find_packages(),
0 commit comments