blob: 2f2962eedcba1dbcad83aab8649ad338266d32fb [file] [log] [blame]
Michael Hirsch, Ph.D4b9625a2019-06-23 12:40:35 -04001[metadata]
Eli Schwartzd4bdd832021-03-09 18:43:21 -05002name = meson
3version = attr: mesonbuild.coredata.version
Michael Hirsch, Ph.D4b9625a2019-06-23 12:40:35 -04004description = A high performance build system
5author = Jussi Pakkanen
6author_email = jpakkane@gmail.com
7url = https://mesonbuild.com
Eli Schwartzbab04ac2023-06-28 02:16:55 -04008project_urls =
9 Source = https://github.com/mesonbuild/meson
Michael Hirsch, Ph.D4b9625a2019-06-23 12:40:35 -040010keywords =
11 meson
12 mesonbuild
13 build system
14 cmake
15license = Apache License, Version 2.0
Eli Schwartz712a7722023-06-28 02:19:27 -040016license_files = COPYING
Michael Hirsch, Ph.D4b9625a2019-06-23 12:40:35 -040017classifiers =
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.D4b9625a2019-06-23 12:40:35 -040028 Programming Language :: Python :: 3.7
29 Programming Language :: Python :: 3.8
Michael Hirschc8b51482021-05-13 03:38:48 -040030 Programming Language :: Python :: 3.9
Henry Schreinerbae58e62022-02-08 23:48:17 -050031 Programming Language :: Python :: 3.10
Michael Hirsch99713ae2022-12-21 15:03:47 -050032 Programming Language :: Python :: 3.11
Eli Schwartz880f2122023-10-03 00:22:25 -040033 Programming Language :: Python :: 3.12
Michael Hirsch, Ph.D4b9625a2019-06-23 12:40:35 -040034 Topic :: Software Development :: Build Tools
35long_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 Schwartzd4bdd832021-03-09 18:43:21 -050038packages = find:
Eli Schwartzad525dc2021-10-31 19:05:46 -040039python_requires = >= 3.7
Michael Hirsch, Ph.Dd218d522019-11-02 10:17:13 -040040
Eli Schwartzd4bdd832021-03-09 18:43:21 -050041[options.entry_points]
42console_scripts =
43 meson = mesonbuild.mesonmain:main
44
Michael Hirsch, Ph.Dd218d522019-11-02 10:17:13 -040045[options.extras_require]
Henry Schreinere1bb4242022-02-08 23:43:05 -050046ninja =
47 ninja>=1.8.2
Michael Hirsch, Ph.Dd218d522019-11-02 10:17:13 -040048progress =
Daniel Mensingerd0dd2182019-12-05 15:52:04 +010049 tqdm
Dylan Bakerf8be4f82020-09-24 09:33:21 -070050typing =
51 mypy
52 typing_extensions; python_version <"3.8"
Daniel Mensingerd0dd2182019-12-05 15:52:04 +010053
Eli Schwartz7ceec992022-04-03 01:34:21 -040054# this must be synced with packaging/hook-mesonbuild.py
Eli Schwartz67e84172021-10-25 17:28:09 -040055[options.package_data]
56mesonbuild.scripts = cmd_or_ps.ps1
Eli Schwartz140097f2021-10-31 20:23:23 -040057mesonbuild.cmake.data = *
58mesonbuild.dependencies.data = *
Eli Schwartz67e84172021-10-25 17:28:09 -040059
Eli Schwartzd4bdd832021-03-09 18:43:21 -050060[options.packages.find]
61include = mesonbuild, mesonbuild.*
Eli Schwartzd4bdd832021-03-09 18:43:21 -050062
Daniel Mensingerd0dd2182019-12-05 15:52:04 +010063[tool:pytest]
64python_classes =
Dylan Bakerfe242922020-10-07 10:52:01 -070065python_files =
Benoit Pierre268276f2023-08-14 19:45:35 +020066 unittests/*tests.py