blob: a0582d9339b718054aebf8fd2b6020beb90e6a19 [file] [log] [blame]
Martí Bolívar53328472021-03-26 16:18:58 -07001# 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
Chris Duf92897ef2022-12-26 19:51:52 +010015version = '0.0.2'
Martí Bolívar53328472021-03-26 16:18:58 -070016
17setuptools.setup(
18 # TBD, just use these for now.
19 author='Zephyr Project',
20 author_email='devel@lists.zephyrproject.org',
Martí Bolívar53328472021-03-26 16:18:58 -070021 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=[
Javan lacerdadbfc1aa2024-03-27 14:01:44 +000038 'PyYAML>=6.0',
Martí Bolívar53328472021-03-26 16:18:58 -070039 ],
40 python_requires='>=3.6',
41)