mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d1f15571d1
This patch on its own will break mach. Part 3 will refactor mach's loader to discover and load modules using a modified module finding method. --HG-- rename : python/mach/mach/settings.py => python/mach/mach/commands/settings.py rename : python/mach/mach/build.py => python/mozbuild/mach/commands/build.py rename : python/mach/mach/testing.py => python/mozbuild/mach/commands/testing.py rename : python/mach/mach/warnings.py => python/mozbuild/mach/commands/warnings.py
16 lines
410 B
Python
16 lines
410 B
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
from setuptools import setup
|
|
|
|
VERSION = '0.1'
|
|
|
|
setup(
|
|
name='mozbuild',
|
|
description='Mozilla build system functionality.',
|
|
license='MPL 2.0',
|
|
packages=['mach', 'mozbuild'],
|
|
version=VERSION
|
|
)
|