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 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
#!/usr/bin/env python3
#
# Copyright (C) 2017 Codethink Limited
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see <http://www.gnu.org/licenses/>.
#
# Authors:
# Tristan Maat <tristan.maat@codethink.co.uk>
# James Ennis <james.ennis@codethink.co.uk>
import sys
try:
from setuptools import setup, find_packages
except ImportError:
print("BuildStream requires setuptools in order to locate plugins. Install "
"it using your package manager (usually python3-setuptools) or via "
"pip (pip3 install setuptools).")
sys.exit(1)
setup(name='BuildStream-external',
use_scm_version=True,
description="A collection of BuildStream plugins that don't fit in with the core plugins for whatever reason.",
license='LGPL',
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
install_requires=[
'tomli; python_version < "3.11"',
'requests',
'setuptools'
],
package_data={
'buildstream': [
'bst_external/elements/**.yaml'
]
},
entry_points={
'buildstream.plugins': [
'cargo = bst_external.sources.cargo',
'docker = bst_external.sources.docker',
'dpkg_build = bst_external.elements.dpkg_build',
'dpkg_deploy = bst_external.elements.dpkg_deploy',
'flatpak_image = bst_external.elements.flatpak_image',
'flatpak_repo = bst_external.elements.flatpak_repo',
'x86image = bst_external.elements.x86image',
'fastbootBootImage = bst_external.elements.fastboot_bootimg',
'fastbootExt4Image = bst_external.elements.fastboot_ext4',
'collect_integration = bst_external.elements.collect_integration',
'collect_manifest = bst_external.elements.collect_manifest',
'git_tag = bst_external.sources.git_tag',
'quilt = bst_external.sources.quilt',
'tar_element = bst_external.elements.tar_element',
'oci = bst_external.elements.oci',
'pypi = bst_external.sources.pypi',
'cpan = bst_external.sources.cpan',
'check_forbidden = bst_external.elements.check_forbidden',
'patch_queue = bst_external.sources.patch_queue',
'snap_image = bst_external.elements.snap_image',
]
},
setup_requires=['pytest-runner', 'setuptools_scm'],
tests_require=['pep8',
# Pin coverage to 4.2 for now, we're experiencing
# random crashes with 4.4.2
'coverage == 4.4.0',
'pytest-datafiles',
'pytest-env',
'pytest-pep8',
'pytest-cov',
# Provide option to run tests in parallel, less reliable
'pytest-xdist',
'pytest >= 3.1.0'],
zip_safe=False
) #eof setup()
|