setup.py: use the version declared in the sources
This commit is contained in:
parent
da6711c93c
commit
17fdd840bb
10
setup.py
10
setup.py
|
@ -3,9 +3,15 @@
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
|
import sys
|
||||||
|
backup_path_0 = sys.path[0]
|
||||||
|
sys.path[0] = backup_path_0 + '/lib'
|
||||||
|
from solaar import NAME, __version__
|
||||||
|
sys.path[0] = backup_path_0
|
||||||
|
del sys, backup_path_0
|
||||||
|
|
||||||
setup(name='solaar',
|
setup(name=NAME.lower(),
|
||||||
version='0.8.8.1',
|
version=__version__,
|
||||||
description='Linux devices manager for the Logitech Unifying Receiver.',
|
description='Linux devices manager for the Logitech Unifying Receiver.',
|
||||||
long_description='''
|
long_description='''
|
||||||
Solaar is a Linux device manager for Logitech's Unifying Receiver peripherals.
|
Solaar is a Linux device manager for Logitech's Unifying Receiver peripherals.
|
||||||
|
|
Loading…
Reference in New Issue