diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-01-16 20:59:34 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-01-16 20:59:34 +0200 |
commit | 84456537da9a77bbfe4fe9027c9fb36111c6b38d (patch) | |
tree | 3d572f92cebbe2657a378df46d07118dd730fbbf /setup.py | |
parent | 2f868a19c66ee22663f8735610739ecbfd7ef610 (diff) | |
download | meson-84456537da9a77bbfe4fe9027c9fb36111c6b38d.zip meson-84456537da9a77bbfe4fe9027c9fb36111c6b38d.tar.gz meson-84456537da9a77bbfe4fe9027c9fb36111c6b38d.tar.bz2 |
Fix some issues that break pypi installs and bump version to upload new version.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -30,7 +30,11 @@ setup(name='meson', author='Jussi Pakkanen', author_email='jpakkane@gmail.com', url='http://mesonbuild.com', - packages=['mesonbuild'], + license=' Apache License, Version 2.0', + packages=['mesonbuild', + 'mesonbuild.modules', + 'mesonbuild.scripts', + 'mesonbuild.wrap'], package_data={'mesonbuild': ['*.ui']}, scripts=['meson', 'mesonconf', 'mesongui', 'mesonintrospect', 'wraptool'], data_files=[('share/man/man1', ['man/meson.1', @@ -50,7 +54,6 @@ setup(name='meson', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Software Development :: Build Tools', ], - license=' Apache License, Version 2.0', 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 |