comparison setup.py @ 485:f046092ba883

install (setup.py): update dependencies
author Goffi <goffi@goffi.org>
date Fri, 23 Sep 2022 18:03:58 +0200
parents 8ee302a48269
children b3cedbee561d
comparison
equal deleted inserted replaced
484:e22e3aaa7e9c 485:f046092ba883
24 NAME = "libervia-desktop" 24 NAME = "libervia-desktop"
25 # NOTE: directory is still "cagou" for compatibility reason, should be changed for 0.9 25 # NOTE: directory is still "cagou" for compatibility reason, should be changed for 0.9
26 DIR_NAME = "cagou" 26 DIR_NAME = "cagou"
27 27
28 install_requires = [ 28 install_requires = [
29 'kivy >=2.0.0, <2.1.0', 29 'kivy >=2.0.0, <2.2.0',
30 'kivy_garden.modernmenu', 30 'kivy_garden.modernmenu',
31 'pillow <8.3', 31 'pillow <9.3',
32 'plyer <2.1', 32 'plyer <2.1',
33 'libervia-backend >=0.8.0b1, <0.9', 33 'libervia-backend > 0.8',
34 ] 34 ]
35 35
36 with open(os.path.join(DIR_NAME, 'VERSION')) as f: 36 with open(os.path.join(DIR_NAME, 'VERSION')) as f:
37 VERSION = f.read().strip() 37 VERSION = f.read().strip()
38 is_dev_version = VERSION.endswith('D') 38 is_dev_version = VERSION.endswith('D')