Bug 1879774 [wpt PR 44524] - WebKit export: Implement field-sizing support for input...
[gecko.git] / xpcom / geckoprocesstypes_generator / setup.py
blob9fd8dff82d7b3f31c59b75f65b8b42568d4826f0
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 from setuptools import find_packages, setup
7 setup(
8 name="geckoprocesstypes",
9 version="1.0",
10 description="Generator for GeckoProcessTypes related resources.",
11 author="Mozilla Foundation",
12 license="MPL 2.0",
13 packages=find_packages(),
14 install_requires=[],
15 entry_points={"console_scripts": ["GeckoProcessTypes.py = geckoprocesstypes:main"]},
16 keywords=["geckoprocesstypes"],