-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·71 lines (53 loc) · 2.36 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- coding: utf-8 -*-
# Copyright (C) 2019-2022 Marcus Rickert
#
# See https://github.com/marcus67/little_brother_taskbar
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import os.path
from setuptools import setup
from little_brother_taskbar import settings
# See https://stackoverflow.com/questions/26900328/install-dependencies-from-setup-py
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'requirements.txt')) as f:
install_requires = f.read().splitlines()
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup_params = {
# standard setup configuration
"install_requires": install_requires,
"packages": ['little_brother_taskbar', 'little_brother_taskbar.test'],
"include_package_data": True,
"scripts": [
"run_little_brother_taskbar",
],
"long_description_content_type" : 'text/markdown',
"long_description": long_description,
}
extended_setup_params = {
# additional setup configuration used by CI stages
# technical name used for e.g. directories, PIP-package, and users
"build_debian_package" : False,
"build_pypi_package": True,
"publish_pypi_package": { settings.RELEASE_BRANCH_NAME: ('PYPI_API_URL', 'PYPI_API_TOKEN', 'TEST_PYPI_API_USER'),
settings.MASTER_BRANCH_NAME: ('TEST_PYPI_API_URL', 'TEST_PYPI_API_TOKEN', 'TEST_PYPI_API_USER')
},
"analyze": True,
}
setup_params.update(settings.settings)
extended_setup_params.update(settings.extended_settings)
extended_setup_params.update(setup_params)
if __name__ == '__main__':
setup(**setup_params)