diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-01-16 19:50:29 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-01-16 19:50:29 +0200 |
commit | 53688207ab547260dceced9159bdbed1684b039a (patch) | |
tree | 7a9b43f7c090c7227acd91f4176f0430406f4918 /setup.py | |
parent | d6e176f45589485786fe87ba7ef15fe7fd8302d1 (diff) | |
download | meson-53688207ab547260dceced9159bdbed1684b039a.zip meson-53688207ab547260dceced9159bdbed1684b039a.tar.gz meson-53688207ab547260dceced9159bdbed1684b039a.tar.bz2 |
Added distutils setup.py.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..36eab6b --- /dev/null +++ b/setup.py @@ -0,0 +1,50 @@ +#!/usr/bin/env python3 + +# Copyright 2016 The Meson development team + +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from distutils.core import setup +from mesonbuild.coredata import version + +setup(name='meson', + version=version, + description='A high performance build system', + author='Jussi Pakkanen', + author_email='jpakkane@gmail.com', + url='http://mesonbuild.com', + packages=['mesonbuild'], + package_data={'mesonbuild': ['*.ui']}, + scripts=['meson', 'mesonconf', 'mesongui', 'mesonintrospect', 'wraptool'], + data_files=[('share/man/man1', ['man/meson.1', + 'man/mesonconf.1', + 'man/mesongui.1', + 'man/mesonintrospect.1', + 'man/wraptool.1'])], + 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', + ], + 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, includint +Gcc, clang and Visual Studio. Its build definitions are written in a simple non-turing +complete DSL.''') |