1# Copyright (c) 2021, Nordic Semiconductor ASA
2#
3# SPDX-License-Identifier: Apache-2.0
4
5import setuptools
6
7long_description = '''
8Placeholder
9===========
10
11This is just a placeholder for moving Zephyr's devicetree libraries
12to PyPI.
13'''
14
15version = '0.0.2'
16
17setuptools.setup(
18    # TBD, just use these for now.
19    author='Zephyr Project',
20    author_email='devel@lists.zephyrproject.org',
21    name='devicetree',
22    version=version,
23    description='Python libraries for devicetree',
24    long_description=long_description,
25    # http://docutils.sourceforge.net/FAQ.html#what-s-the-official-mime-type-for-restructuredtext-data
26    long_description_content_type="text/x-rst",
27    url='https://github.com/zephyrproject-rtos/python-devicetree',
28    packages=setuptools.find_packages(where='src'),
29    package_dir={'': 'src'},
30    classifiers=[
31        'Programming Language :: Python :: 3 :: Only',
32        'License :: OSI Approved :: Apache Software License',
33        'Operating System :: POSIX :: Linux',
34        'Operating System :: MacOS :: MacOS X',
35        'Operating System :: Microsoft :: Windows',
36    ],
37    install_requires=[
38        'PyYAML>=6.0',
39    ],
40    python_requires='>=3.6',
41)
42