Mercurial > libervia-desktop-kivy
comparison setup.py @ 475:c35aa683fa2d
/!\ package is being renamed to libervia-desktop following global name change /!\
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 18 Jun 2021 16:36:39 +0200 |
parents | 98be52d5ac25 |
children | 0f2a6eed633d |
comparison
equal
deleted
inserted
replaced
474:98be52d5ac25 | 475:c35aa683fa2d |
---|---|
1 #!/usr/bin/env python3 | 1 #!/usr/bin/env python3 |
2 | 2 |
3 # Cagou: a SàT frontend | 3 # Libervia Desktop and Mobile Frontend |
4 # Copyright (C) 2009-2021 Jérôme Poisson (goffi@goffi.org) | 4 # Copyright (C) 2009-2021 Jérôme Poisson (goffi@goffi.org) |
5 # Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org) | 5 # Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org) |
6 | 6 |
7 # This program is free software: you can redistribute it and/or modify | 7 # This program is free software: you can redistribute it and/or modify |
8 # it under the terms of the GNU Affero General Public License as published by | 8 # it under the terms of the GNU Affero General Public License as published by |
19 | 19 |
20 from setuptools import setup, find_packages | 20 from setuptools import setup, find_packages |
21 import os | 21 import os |
22 import textwrap | 22 import textwrap |
23 | 23 |
24 NAME = 'cagou' | 24 NAME = "libervia-desktop" |
25 # NOTE: directory is still "cagou" for compatibility reason, should be changed for 0.9 | |
26 DIR_NAME = "cagou" | |
25 | 27 |
26 install_requires = [ | 28 install_requires = [ |
27 'kivy >=2.0.0, <2.1.0', | 29 'kivy >=2.0.0, <2.1.0', |
28 'kivy_garden.modernmenu <0.2.0', | 30 'kivy_garden.modernmenu <0.2.0', |
29 'pillow <8.3', | 31 'pillow <8.3', |
30 'plyer <2.1', | 32 'plyer <2.1', |
31 'sat >=0.8.0b1, <0.9', | 33 'sat >=0.8.0b1, <0.9', |
32 ] | 34 ] |
33 | 35 |
34 with open(os.path.join(NAME, 'VERSION')) as f: | 36 with open(os.path.join(DIR_NAME, 'VERSION')) as f: |
35 VERSION = f.read().strip() | 37 VERSION = f.read().strip() |
36 is_dev_version = VERSION.endswith('D') | 38 is_dev_version = VERSION.endswith('D') |
37 | 39 |
38 | 40 |
39 def cagou_dev_version(): | 41 def cagou_dev_version(): |