From 3dab2b6bb0e1d6a1a6c01c54232f9fe3511b42be Mon Sep 17 00:00:00 2001 From: Prodesire Date: Wed, 18 Oct 2017 23:43:50 +0800 Subject: [PATCH] add __version__ to pydu --- pydu/__init__.py | 4 ++++ setup.py | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/pydu/__init__.py b/pydu/__init__.py index e69de29..83d314d 100644 --- a/pydu/__init__.py +++ b/pydu/__init__.py @@ -0,0 +1,4 @@ +from pydu import py3helpers, structures, utils + + +__version__ = '0.0.2' diff --git a/setup.py b/setup.py index 9a3166e..a20dccc 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,10 @@ +from pydu import __version__ from setuptools import setup, find_packages + setup( name="pydu", - version="0.0.1", + version=__version__, description="pydu", author="Prodesire", url="https://github.com/Prodesire/pydu",