aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-08-12 00:55:04 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-08-12 01:18:58 +0530
commitc0413f5d49ce7b7df03cf859841aa8b275a6cd6d (patch)
tree287c25cd3f04838be712b8de4263e48a34f5ae47 /setup.py
parent86298f2109d215ad6b26d3462af7b685d52d0dd7 (diff)
downloadmeson-c0413f5d49ce7b7df03cf859841aa8b275a6cd6d.zip
meson-c0413f5d49ce7b7df03cf859841aa8b275a6cd6d.tar.gz
meson-c0413f5d49ce7b7df03cf859841aa8b275a6cd6d.tar.bz2
setup: Add tests for the installed files list
Ensure that the installed files list matches what we expect, to avoid surprises at release time.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py74
1 files changed, 40 insertions, 34 deletions
diff --git a/setup.py b/setup.py
index b11d8a2..41933cb 100644
--- a/setup.py
+++ b/setup.py
@@ -28,38 +28,44 @@ from setuptools import setup
# On windows, will create Scripts/meson.exe and Scripts/meson-script.py
# Other platforms will create bin/meson
entries = {'console_scripts': ['meson=mesonbuild.mesonmain:main']}
+packages = ['mesonbuild',
+ 'mesonbuild.backend',
+ 'mesonbuild.compilers',
+ 'mesonbuild.dependencies',
+ 'mesonbuild.modules',
+ 'mesonbuild.scripts',
+ 'mesonbuild.wrap']
+data_files = []
+if sys.platform != 'win32':
+ # Only useful on UNIX-like systems
+ data_files = [('share/man/man1', ['man/meson.1']),
+ ('share/polkit-1/actions', ['data/com.mesonbuild.install.policy'])]
-setup(name='meson',
- version=version,
- description='A high performance build system',
- author='Jussi Pakkanen',
- author_email='jpakkane@gmail.com',
- url='http://mesonbuild.com',
- license=' Apache License, Version 2.0',
- python_requires='>=3.5',
- packages=['mesonbuild',
- 'mesonbuild.backend',
- 'mesonbuild.compilers',
- 'mesonbuild.dependencies',
- 'mesonbuild.modules',
- 'mesonbuild.scripts',
- 'mesonbuild.wrap'],
- entry_points=entries,
- data_files=[('share/man/man1', ['man/meson.1']),
- ('share/polkit-1/actions', ['data/com.mesonbuild.install.policy'])],
- classifiers=['Development Status :: 5 - Production/Stable',
- 'Environment :: Console',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: Apache Software License',
- 'Natural Language :: English',
- 'Operating System :: MacOS :: MacOS X',
- 'Operating System :: Microsoft :: Windows',
- 'Operating System :: POSIX :: BSD',
- 'Operating System :: POSIX :: Linux',
- 'Programming Language :: Python :: 3 :: Only',
- 'Topic :: Software Development :: Build Tools',
- ],
- 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 and Visual Studio. Its build definitions are written in a simple non-turing
-complete DSL.''')
+if __name__ == '__main__':
+ setup(name='meson',
+ version=version,
+ description='A high performance build system',
+ author='Jussi Pakkanen',
+ author_email='jpakkane@gmail.com',
+ url='http://mesonbuild.com',
+ license=' Apache License, Version 2.0',
+ python_requires='>=3.5',
+ packages=packages,
+ entry_points=entries,
+ data_files=data_files,
+ classifiers=['Development Status :: 5 - Production/Stable',
+ 'Environment :: Console',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: Apache Software License',
+ 'Natural Language :: English',
+ 'Operating System :: MacOS :: MacOS X',
+ 'Operating System :: Microsoft :: Windows',
+ 'Operating System :: POSIX :: BSD',
+ 'Operating System :: POSIX :: Linux',
+ 'Programming Language :: Python :: 3 :: Only',
+ 'Topic :: Software Development :: Build Tools',
+ ],
+ 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 and Visual Studio. Its build definitions are written in a simple non-turing
+ complete DSL.''')