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 1d597ce commit d530760Copy full SHA for d530760
setup.py
@@ -1,4 +1,5 @@
1
from setuptools import setup, find_packages
2
+import stream
3
4
setup(
5
name='django-stream',
@@ -8,7 +9,7 @@
8
9
author='Alen Mujezinovic',
10
author_email='[email protected]',
11
url='https://github.com/caffeinehit/django-stream',
- version='0.2',
12
+ version=stream.__version__,
13
include_package_data=True,
14
zip_safe=False,
15
package_data={'stream': ['templates/stream/*.html'], }
stream/__init__.py
@@ -1 +1 @@
-
+__version__ = '0.2.1'
0 commit comments