Michael Hirsch, Ph.D | 4b9625a | 2019-06-23 12:40:35 -0400 | [diff] [blame] | 1 | [metadata] |
Eli Schwartz | d4bdd83 | 2021-03-09 18:43:21 -0500 | [diff] [blame] | 2 | name = meson |
| 3 | version = attr: mesonbuild.coredata.version |
Michael Hirsch, Ph.D | 4b9625a | 2019-06-23 12:40:35 -0400 | [diff] [blame] | 4 | description = A high performance build system |
| 5 | author = Jussi Pakkanen |
| 6 | author_email = jpakkane@gmail.com |
| 7 | url = https://mesonbuild.com |
Eli Schwartz | bab04ac | 2023-06-28 02:16:55 -0400 | [diff] [blame] | 8 | project_urls = |
| 9 | Source = https://github.com/mesonbuild/meson |
Michael Hirsch, Ph.D | 4b9625a | 2019-06-23 12:40:35 -0400 | [diff] [blame] | 10 | keywords = |
| 11 | meson |
| 12 | mesonbuild |
| 13 | build system |
| 14 | cmake |
| 15 | license = Apache License, Version 2.0 |
Eli Schwartz | 712a772 | 2023-06-28 02:19:27 -0400 | [diff] [blame] | 16 | license_files = COPYING |
Michael Hirsch, Ph.D | 4b9625a | 2019-06-23 12:40:35 -0400 | [diff] [blame] | 17 | classifiers = |
| 18 | Development Status :: 5 - Production/Stable |
| 19 | Environment :: Console |
| 20 | Intended Audience :: Developers |
| 21 | License :: OSI Approved :: Apache Software License |
| 22 | Natural Language :: English |
| 23 | Operating System :: MacOS :: MacOS X |
| 24 | Operating System :: Microsoft :: Windows |
| 25 | Operating System :: POSIX :: BSD |
| 26 | Operating System :: POSIX :: Linux |
| 27 | Programming Language :: Python :: 3 :: Only |
Michael Hirsch, Ph.D | 4b9625a | 2019-06-23 12:40:35 -0400 | [diff] [blame] | 28 | Programming Language :: Python :: 3.7 |
| 29 | Programming Language :: Python :: 3.8 |
Michael Hirsch | c8b5148 | 2021-05-13 03:38:48 -0400 | [diff] [blame] | 30 | Programming Language :: Python :: 3.9 |
Henry Schreiner | bae58e6 | 2022-02-08 23:48:17 -0500 | [diff] [blame] | 31 | Programming Language :: Python :: 3.10 |
Michael Hirsch | 99713ae | 2022-12-21 15:03:47 -0500 | [diff] [blame] | 32 | Programming Language :: Python :: 3.11 |
Eli Schwartz | 880f212 | 2023-10-03 00:22:25 -0400 | [diff] [blame] | 33 | Programming Language :: Python :: 3.12 |
Michael Hirsch, Ph.D | 4b9625a | 2019-06-23 12:40:35 -0400 | [diff] [blame] | 34 | Topic :: Software Development :: Build Tools |
| 35 | long_description = Meson is a cross-platform build system designed to be both as fast and as user friendly as possible. It supports many languages and compilers, including GCC, Clang, PGI, Intel, and Visual Studio. Its build definitions are written in a simple non-Turing complete DSL. |
| 36 | |
| 37 | [options] |
Eli Schwartz | d4bdd83 | 2021-03-09 18:43:21 -0500 | [diff] [blame] | 38 | packages = find: |
Eli Schwartz | ad525dc | 2021-10-31 19:05:46 -0400 | [diff] [blame] | 39 | python_requires = >= 3.7 |
Michael Hirsch, Ph.D | d218d52 | 2019-11-02 10:17:13 -0400 | [diff] [blame] | 40 | |
Eli Schwartz | d4bdd83 | 2021-03-09 18:43:21 -0500 | [diff] [blame] | 41 | [options.entry_points] |
| 42 | console_scripts = |
| 43 | meson = mesonbuild.mesonmain:main |
| 44 | |
Michael Hirsch, Ph.D | d218d52 | 2019-11-02 10:17:13 -0400 | [diff] [blame] | 45 | [options.extras_require] |
Henry Schreiner | e1bb424 | 2022-02-08 23:43:05 -0500 | [diff] [blame] | 46 | ninja = |
| 47 | ninja>=1.8.2 |
Michael Hirsch, Ph.D | d218d52 | 2019-11-02 10:17:13 -0400 | [diff] [blame] | 48 | progress = |
Daniel Mensinger | d0dd218 | 2019-12-05 15:52:04 +0100 | [diff] [blame] | 49 | tqdm |
Dylan Baker | f8be4f8 | 2020-09-24 09:33:21 -0700 | [diff] [blame] | 50 | typing = |
| 51 | mypy |
| 52 | typing_extensions; python_version <"3.8" |
Daniel Mensinger | d0dd218 | 2019-12-05 15:52:04 +0100 | [diff] [blame] | 53 | |
Eli Schwartz | 7ceec99 | 2022-04-03 01:34:21 -0400 | [diff] [blame] | 54 | # this must be synced with packaging/hook-mesonbuild.py |
Eli Schwartz | 67e8417 | 2021-10-25 17:28:09 -0400 | [diff] [blame] | 55 | [options.package_data] |
| 56 | mesonbuild.scripts = cmd_or_ps.ps1 |
Eli Schwartz | 140097f | 2021-10-31 20:23:23 -0400 | [diff] [blame] | 57 | mesonbuild.cmake.data = * |
| 58 | mesonbuild.dependencies.data = * |
Eli Schwartz | 67e8417 | 2021-10-25 17:28:09 -0400 | [diff] [blame] | 59 | |
Eli Schwartz | d4bdd83 | 2021-03-09 18:43:21 -0500 | [diff] [blame] | 60 | [options.packages.find] |
| 61 | include = mesonbuild, mesonbuild.* |
Eli Schwartz | d4bdd83 | 2021-03-09 18:43:21 -0500 | [diff] [blame] | 62 | |
Daniel Mensinger | d0dd218 | 2019-12-05 15:52:04 +0100 | [diff] [blame] | 63 | [tool:pytest] |
| 64 | python_classes = |
Dylan Baker | fe24292 | 2020-10-07 10:52:01 -0700 | [diff] [blame] | 65 | python_files = |
Benoit Pierre | 268276f | 2023-08-14 19:45:35 +0200 | [diff] [blame] | 66 | unittests/*tests.py |