2017-06-14 13:36:37 +02:00
|
|
|
# kas - setup tool for bitbake based projects
|
|
|
|
#
|
2019-09-11 13:43:15 +02:00
|
|
|
# Copyright (c) Siemens AG, 2017-2019
|
2017-06-14 13:36:37 +02:00
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Setup script for kas, a setup tool for bitbake based projects
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
from os import path
|
2017-06-21 13:32:56 +02:00
|
|
|
from setuptools import setup, find_packages
|
2017-06-14 13:36:37 +02:00
|
|
|
|
2017-06-19 09:16:50 +02:00
|
|
|
from kas import __version__
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
__license__ = 'MIT'
|
2019-09-11 13:43:15 +02:00
|
|
|
__copyright__ = 'Copyright (c) Siemens AG, 2017-2019'
|
2017-06-14 13:36:37 +02:00
|
|
|
|
2017-06-21 13:32:56 +02:00
|
|
|
HERE = path.abspath(path.dirname(__file__))
|
2017-07-17 22:38:02 +02:00
|
|
|
with open(path.join(HERE, 'README.rst')) as f:
|
2017-06-21 13:32:56 +02:00
|
|
|
LONG_DESCRIPTION = f.read()
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='kas',
|
|
|
|
version=__version__,
|
|
|
|
|
|
|
|
description='Setup tool for bitbake based projects',
|
2017-06-21 13:32:56 +02:00
|
|
|
long_description=LONG_DESCRIPTION,
|
2017-06-14 13:36:37 +02:00
|
|
|
|
2019-09-11 13:43:15 +02:00
|
|
|
maintainer='Jan Kiszka',
|
|
|
|
maintainer_email='jan.kiszka@siemens.com',
|
2017-07-14 18:40:55 +02:00
|
|
|
|
|
|
|
url='https://github.com/siemens/kas',
|
|
|
|
download_url=('https://github.com/siemens/'
|
|
|
|
'kas/archive/{version}.tar.gz'.format(version=__version__)),
|
|
|
|
|
2017-06-14 13:36:37 +02:00
|
|
|
license='MIT',
|
|
|
|
|
|
|
|
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
classifiers=[
|
|
|
|
# How mature is this project? Common values are
|
|
|
|
# 3 - Alpha
|
|
|
|
# 4 - Beta
|
|
|
|
# 5 - Production/Stable
|
2017-07-10 11:02:14 +02:00
|
|
|
'Development Status :: 4 - Beta',
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
# Indicate who your project is intended for
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Topic :: Software Development :: Build Tools',
|
|
|
|
|
|
|
|
# Pick your license as you wish (should match "license" above)
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
2017-11-09 14:16:19 +01:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2020-01-09 11:24:50 +01:00
|
|
|
'Programming Language :: Python :: 3.7',
|
|
|
|
'Programming Language :: Python :: 3.8',
|
2017-06-14 13:36:37 +02:00
|
|
|
],
|
|
|
|
keywords='OpenEmbedded bitbake development',
|
|
|
|
|
|
|
|
packages=find_packages(),
|
|
|
|
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'kas=kas.kas:main',
|
|
|
|
],
|
|
|
|
},
|
2017-06-22 13:17:02 +02:00
|
|
|
|
|
|
|
install_requires=[
|
|
|
|
'PyYAML>=3.0',
|
|
|
|
'distro>=1.0.0',
|
2017-10-13 12:20:05 +02:00
|
|
|
'jsonschema>=2.5.0',
|
2017-06-22 13:17:02 +02:00
|
|
|
],
|
2017-11-09 14:16:18 +01:00
|
|
|
|
2020-01-09 11:24:50 +01:00
|
|
|
# At least python 3.5 is needed by now for PyYAML:
|
|
|
|
python_requires='>=3.5',
|
2017-06-14 13:36:37 +02:00
|
|
|
)
|