mirror of https://github.com/flaggo/pydu.git
add __version__ to pydu
This commit is contained in:
parent
96a2ed72f5
commit
3dab2b6bb0
|
@ -0,0 +1,4 @@
|
||||||
|
from pydu import py3helpers, structures, utils
|
||||||
|
|
||||||
|
|
||||||
|
__version__ = '0.0.2'
|
4
setup.py
4
setup.py
|
@ -1,8 +1,10 @@
|
||||||
|
from pydu import __version__
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pydu",
|
name="pydu",
|
||||||
version="0.0.1",
|
version=__version__,
|
||||||
description="pydu",
|
description="pydu",
|
||||||
author="Prodesire",
|
author="Prodesire",
|
||||||
url="https://github.com/Prodesire/pydu",
|
url="https://github.com/Prodesire/pydu",
|
||||||
|
|
Loading…
Reference in New Issue